Fix sidebar scrollbar between nav and content.

Remove independent sidebar scroll so the page scrolls as one unit; add dark themed scrollbars and bump CSS cache versions.
This commit is contained in:
Aissa
2026-07-19 18:31:43 +00:00
parent 171878ee1d
commit 8712f503b1
5 changed files with 38 additions and 6 deletions
+26
View File
@@ -25,6 +25,32 @@ a:hover {
text-decoration: underline;
}
/* Themed scrollbars (Firefox + WebKit) */
html {
scrollbar-color: rgba(100, 116, 139, 0.5) rgba(8, 12, 18, 0.65);
scrollbar-width: thin;
}
*::-webkit-scrollbar {
width: 8px;
height: 8px;
}
*::-webkit-scrollbar-track {
background: rgba(8, 12, 18, 0.55);
}
*::-webkit-scrollbar-thumb {
background: rgba(100, 116, 139, 0.45);
border-radius: 999px;
border: 2px solid rgba(8, 12, 18, 0.55);
}
*::-webkit-scrollbar-thumb:hover {
background: rgba(148, 163, 184, 0.6);
}
.layout {
display: flex;
min-height: 100vh;