Adjust active color of boss card

This commit is contained in:
Sakura Knoll
2022-07-23 00:51:13 +09:00 Unverified
parent 64305bd2dc
commit d290355a69
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -128,7 +128,7 @@ const BossCard = ({
}) => {
return (
<Box
sx={{ position: 'relative', '&.active': { bg: 'primary' } }}
sx={{ position: 'relative', '&.active': { bg: 'transparentPrimary' } }}
className={active ? 'active' : ''}
>
{label != null && (
+1
View File
@@ -14,6 +14,7 @@ export const theme: Theme = {
text: '#212529',
background: '#fff',
primary: '#007bff',
transparentPrimary: '#007bff99',
secondary: '#6c757d',
muted: colors.gray[5],
success: '#28a745',