Fix spacing GlobalBadges

This commit is contained in:
thororen 2024-07-22 01:57:52 -04:00 committed by GitHub
parent df5b33220c
commit af6e7b0bfb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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>