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 d1a2eefca6
All checks were successful
continuous-integration/drone/push Build is passing
Improve consistency of the layout (#386)
Co-authored-by: kolaente <k@knt.li>
Reviewed-on: #386
Co-authored-by: konrad <konrad@kola-entertainments.de>
Co-committed-by: konrad <konrad@kola-entertainments.de>
2021-01-23 17:18:09 +00:00

27 lines
474 B
SCSS

// Chrome
::-webkit-scrollbar {
width: $scrollbar-height;
height: $scrollbar-height;
}
::-webkit-scrollbar-track {
background: $scrollbar-track-color;
border-radius: .5rem;
}
::-webkit-scrollbar-thumb {
border-radius: .5rem;
background: $scrollbar-thumb-color;
transition: all $transition;
&:hover {
background: $scrollbar-hover-color;
}
}
// Firefox
* {
scrollbar-color: $scrollbar-thumb-color $scrollbar-track-color;
scrollbar-width: thin;
}