From cde87274c647e8eb9db91b2c07ba552021e81c5d Mon Sep 17 00:00:00 2001 From: "Kuchenik, Venessa J" Date: Wed, 23 Jul 2025 21:31:18 +0000 Subject: [PATCH] Copied and pasted most recent App.jsx into Dashboard.jsx --- client/src/components/layout/Dashboard.jsx | 88 +++++++++++++--------- 1 file changed, 52 insertions(+), 36 deletions(-) diff --git a/client/src/components/layout/Dashboard.jsx b/client/src/components/layout/Dashboard.jsx index 11be033..ce97e00 100644 --- a/client/src/components/layout/Dashboard.jsx +++ b/client/src/components/layout/Dashboard.jsx @@ -13,42 +13,58 @@ export default function Dashboard() { const [view, setView] = useState("widget"); return ( - <> - + - - -
- - - - - - - - + .react-resizable-handle-se { + position: absolute; + bottom: 0; + z-index: 1; + border-radius: 5px; + } + + * { + scrollbar-width: thin; /* Firefox */ + scrollbar-color: #a0aec0 transparent; /* Firefox */ + } + + /* Chrome, Edge, Safari */ + ::-webkit-scrollbar { + width: 8px; + } + ::-webkit-scrollbar-thumb { + background-color: rgba(100, 100, 100, 0.4); + border-radius: 4px; + } + ::-webkit-scrollbar-track { + background: transparent; + } + `} + /> + + +
+ + + + + + + + ); -} - - +} \ No newline at end of file