Fix scrollbars (#309)

This commit is contained in:
lucas lelievre
2022-11-26 21:26:39 +01:00
committed by GitHub
parent e5c05fc864
commit 5247891ff0
3 changed files with 6 additions and 3 deletions

3
gui/.gitignore vendored
View File

@@ -24,3 +24,6 @@ yarn-debug.log*
yarn-error.log*
*.log
/dist

View File

@@ -15,7 +15,7 @@ export function SettingsLayoutRoute({ children }: { children: ReactChild }) {
<Navbar></Navbar>
<div className="h-full w-full gap-2 flex">
<SettingsSidebar></SettingsSidebar>
<div className="w-full flex flex-col overflow-y-auto pr-2">
<div className="w-full flex flex-col overflow-y-auto pr-1 mr-1">
{children}
</div>
</div>

View File

@@ -21,8 +21,8 @@ html {
}
::-webkit-scrollbar {
width: 4px;
height: 4px;
width: 8px;
height: 8px;
}
::-webkit-scrollbar-corner {