1
0
Fork 0
mirror of https://github.com/morpheus65535/bazarr synced 2025-03-11 06:32:52 +00:00

Fixed background color of media overview badge on light theme

This commit is contained in:
Anderson Shindy Oki 2024-06-11 19:24:33 +09:00 committed by GitHub
parent c4f5511915
commit 9787934820
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 1 deletions

View file

@ -35,6 +35,11 @@
color: darken($color-highlight-6, 1);
background-color: transparentize($color-highlight-5, 0.8);
}
&[data-variant="light"] {
color: var(--mantine-color-black);
background-color: var(--mantine-color-gray-5);
}
}
}
}

View file

@ -200,8 +200,8 @@ const ItemBadge: FunctionComponent<ItemBadgeProps> = ({
}) => (
<Badge
leftSection={<FontAwesomeIcon icon={icon}></FontAwesomeIcon>}
variant="light"
radius="sm"
color="dark"
size="sm"
style={{ textTransform: "none" }}
aria-label={title}