diff --git a/webUI/react/src/App.tsx b/webUI/react/src/App.tsx index 246876d4..96d30847 100644 --- a/webUI/react/src/App.tsx +++ b/webUI/react/src/App.tsx @@ -28,6 +28,21 @@ export default function App() { palette: { type: darkTheme ? 'dark' : 'light', }, + overrides: { + MuiCssBaseline: { + '@global': { + '*::-webkit-scrollbar': { + width: '10px', + background: darkTheme ? '#222' : '#e1e1e1', + + }, + '*::-webkit-scrollbar-thumb': { + background: darkTheme ? '#111' : '#aaa', + borderRadius: '5px', + }, + }, + }, + }, }), [darkTheme], ); @@ -41,7 +56,7 @@ export default function App() { - + diff --git a/webUI/react/src/components/MangaGrid.tsx b/webUI/react/src/components/MangaGrid.tsx index 4f7c20da..e50f8aab 100644 --- a/webUI/react/src/components/MangaGrid.tsx +++ b/webUI/react/src/components/MangaGrid.tsx @@ -44,7 +44,7 @@ export default function MangaGrid(props: IProps) { } return ( - + {mapped} );