30 lines
491 B
SCSS
30 lines
491 B
SCSS
@use '@beeline/design-tokens/scss/tokens/themes';
|
|
|
|
html {
|
|
scrollbar-color: themes.$color-text-inactive transparent;
|
|
}
|
|
|
|
* {
|
|
scrollbar-width: thin;
|
|
}
|
|
|
|
body::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
width: 15px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background-color: transparent;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background-color: themes.$color-text-inactive;
|
|
border: 4px solid transparent;
|
|
background-clip: content-box;
|
|
border-radius: 100px;
|
|
min-height: 28px;
|
|
}
|