This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
frontend/src/styles/components/base/scrollbars.scss
konrad 9c66a7570a
All checks were successful
continuous-integration/drone/push Build is passing
Reorganize Styles (#45)
2019-12-19 22:09:23 +00:00

32 lines
681 B
SCSS

// Chrome
::-webkit-scrollbar {
width: $scrollbar-height;
height: $scrollbar-height;
}
::-webkit-scrollbar-track {
background: $scrollbar-track-color;
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
border-radius: 10px;
background: $scrollbar-thumb-color;
-webkit-transition: background-color $transition;
-moz-transition: background-color $transition;
-ms-transition: background-color $transition;
-o-transition: background-color $transition;
transition: background-color $transition;
&:hover {
background: $scrollbar-hover-color;
}
}
// Firefox
*{
scrollbar-color: $scrollbar-thumb-color $scrollbar-track-color;
scrollbar-width: thin;
}