diff --git a/src/components/LVMWebRoot/LVMAppShell/NavBar/NavBar.tsx b/src/components/LVMWebRoot/LVMAppShell/NavBar/NavBar.tsx index 4a0af7e..d837170 100644 --- a/src/components/LVMWebRoot/LVMAppShell/NavBar/NavBar.tsx +++ b/src/components/LVMWebRoot/LVMAppShell/NavBar/NavBar.tsx @@ -9,7 +9,7 @@ import NavAccordion from '@/src/components/NavAccordion/NavAccordion'; import NavAccordionItem from '@/src/components/NavAccordionItem/NavAccordionItem'; -import { Box, Stack } from '@mantine/core'; +import { Box, ScrollArea, Stack } from '@mantine/core'; import { IconCloudRain, IconDeviceComputerCamera, @@ -23,58 +23,64 @@ import NavBarItem from './NavBarItem/NavBarItem'; export default function NavBar() { return ( - - } text="Overview" /> - } text="GORT Log" /> - } text="Exposure List" /> - } - text="Webcams" - external - newWindow - /> - } - text="Weather" - external - newWindow - /> - - - - - - - - - - - - - - - + + } text="Overview" /> + } text="GORT Log" /> + } text="Exposure List" /> + } + text="Webcams" external + newWindow /> - } + text="Weather" external + newWindow /> - - - + + + + + + + + + + + + + + + + + + + + ); }