mirror of
https://github.com/Equicord/Equicord.git
synced 2025-06-09 14:43:03 -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
|
||||
{...tooltipProps}
|
||||
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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue