This commit is contained in:
Viet An
2026-07-09 17:22:19 +07:00
parent 9b77644e8d
commit 22854bb4fb
9 changed files with 104 additions and 77 deletions

View File

@@ -1,5 +1,6 @@
@use "utils.scss";
@use "overrides-components.scss";
@use "scrollbar.scss";
:root {
font-size: 15px;

View File

@@ -0,0 +1,14 @@
// Fix: Scrollbar causing layout shift
* {
scrollbar-width: thin;
scrollbar-color: #888 transparent;
}
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: transparent;
}