diff --git a/barkmanui/src/common/components/BarkHeader.module.css b/barkmanui/src/common/components/BarkHeader.module.css index a670a4a..c165fa5 100644 --- a/barkmanui/src/common/components/BarkHeader.module.css +++ b/barkmanui/src/common/components/BarkHeader.module.css @@ -27,7 +27,7 @@ } [data-mantine-color-scheme] &.active { - background-color: #D40404; + background-color: var(--mantine-color-red-filled); color: var(--mantine-color-white); } } \ No newline at end of file diff --git a/barkmanui/src/features/inventory/InventoryList.tsx b/barkmanui/src/features/inventory/InventoryList.tsx index ca97bc8..3328e9c 100644 --- a/barkmanui/src/features/inventory/InventoryList.tsx +++ b/barkmanui/src/features/inventory/InventoryList.tsx @@ -1,7 +1,7 @@ import {useQuery} from "@tanstack/react-query"; import {InventoryItem} from "./types"; import {BarkHeader} from "../../common/components/BarkHeader.tsx"; -import { Table } from '@mantine/core'; +import {Flex, Table} from '@mantine/core'; import BarkButton from "../../common/components/BarkButton.tsx"; @@ -28,20 +28,31 @@ function InventoryList() { return ( <> -

- ARFF ARFF BARK BARK -

- Add Item + + +

+ ARFF ARFF BARK BARK +

+ Add Item +
+
{isFetching ? 'Updating...' : ''}
- - - ID - Brand - Item - Status + + + ID + Brand + Item + Status diff --git a/barkmanui/src/pages/home.tsx b/barkmanui/src/pages/home.tsx index 2d1c00a..aa8a845 100644 --- a/barkmanui/src/pages/home.tsx +++ b/barkmanui/src/pages/home.tsx @@ -1,4 +1,5 @@ import {BarkHeader} from "../common/components/BarkHeader.tsx"; +import {Text} from "@mantine/core"; function Home() { @@ -7,9 +8,9 @@ function Home() { return ( <> -

- ARFF ARFF BARK BARK -

+ + ARFF ARFF BARK BARK + )