diff --git a/barkmanui/src/common/components/BarkHeader.module.css b/barkmanui/src/common/components/BarkHeader.module.css index 35387f8..4bf2faf 100644 --- a/barkmanui/src/common/components/BarkHeader.module.css +++ b/barkmanui/src/common/components/BarkHeader.module.css @@ -26,8 +26,8 @@ background-color: light-dark(var(--mantine-color-gray-0), var(--mantine-color-dark-6)); } - [data-mantine-color-scheme] & .active { - background-color: var(--mantine-color-blue-filled); + [data-mantine-color-scheme] &.active { + background-color: #D40404; color: var(--mantine-color-white); } } \ No newline at end of file diff --git a/barkmanui/src/common/components/BarkHeader.tsx b/barkmanui/src/common/components/BarkHeader.tsx index 7780ae6..3baf441 100644 --- a/barkmanui/src/common/components/BarkHeader.tsx +++ b/barkmanui/src/common/components/BarkHeader.tsx @@ -1,4 +1,3 @@ -import { useState } from 'react'; import { Burger, Container, Group } from '@mantine/core'; import { useDisclosure } from '@mantine/hooks'; import classes from './BarkHeader.module.css';