15 lines
219 B
SCSS
15 lines
219 B
SCSS
// Fix: Scrollbar causing layout shift
|
|
* {
|
|
scrollbar-width: thin;
|
|
scrollbar-color: #888 transparent;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
width: 8px;
|
|
height: 8px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: transparent;
|
|
}
|