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:
parent
c4f5511915
commit
9787934820
2 changed files with 6 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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}
|
||||
|
|
Loading…
Add table
Reference in a new issue