obliterate the scrollbar

This commit is contained in:
2022-12-28 17:24:50 +01:00
parent bb5059a5db
commit b16c0bb62b

View File

@@ -27,6 +27,7 @@ body {
color: var(--color); color: var(--color);
min-height: 100vh; min-height: 100vh;
font-family: var(--fonts-norm); font-family: var(--fonts-norm);
overflow-y: overlay;
} }
h1, h1,
h2, h2,
@@ -97,3 +98,12 @@ button {
} }
} }
} }
::-webkit-scrollbar {
background: transparent;
width: 4px;
}
::-webkit-scrollbar-thumb {
background: #999;
border-radius: 1337px;
}