mirror of
https://github.com/Equicord/Equicord.git
synced 2025-06-11 15:43:02 -04:00
Fix spacing GlobalBadges
This commit is contained in:
parent
df5b33220c
commit
af6e7b0bfb
1 changed files with 5 additions and 1 deletions
|
@ -66,7 +66,11 @@ const BadgeComponent = ({ name, img }: { name: string, img: string; }) => {
|
||||||
<img
|
<img
|
||||||
{...tooltipProps}
|
{...tooltipProps}
|
||||||
src={img}
|
src={img}
|
||||||
style={{ width: "22px", height: "22px", transform: name.includes("Replugged") ? null : "scale(0.9)", margin: "0 1px" }}
|
style={{
|
||||||
|
width: "20px",
|
||||||
|
height: "20px",
|
||||||
|
transform: name.includes("Replugged") ? "scale(0.9)" : null
|
||||||
|
}}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue