mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-12-24 08:17:07 +00:00
23 lines
528 B
SCSS
23 lines
528 B
SCSS
body:not(.is-mobile) {
|
|
|
|
::-webkit-scrollbar {
|
|
width: 12px;
|
|
height: 12px;
|
|
background-color: rgba(0, 0, 0, 0);
|
|
}
|
|
|
|
::-webkit-scrollbar:hover {
|
|
background-color: rgba(0, 0, 0, 0.12);
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
border: 2px solid transparent;
|
|
box-shadow: inset 0 0 0 24px rgba(0, 0, 0, 0.37);
|
|
border-radius: 24px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:active {
|
|
box-shadow: inset 0 0 0 24px rgba(0, 0, 0, 0.54);
|
|
border-radius: 24px;
|
|
}
|
|
} |