Changed Card background to Alt if available for better visibility

This commit is contained in:
Neshura 2023-03-17 00:33:13 +01:00
parent 9a6db5128a
commit e8245d41b5
Signed by: Neshura
GPG key ID: B6983AAA6B9A7A6C
2 changed files with 4 additions and 2 deletions
components/styles/cards

View file

@ -45,7 +45,7 @@ const Card = styled.div<OnlinePropType>`
}
return ret;
}};
background-color: ${({ theme }) => theme.colors.background};
background-color: ${({ theme }) => theme.colors.backgroundAlt ? theme.colors.backgroundAlt : theme.colors.background};
transition-property: max-height, margin-bottom;