insomnia/app/css/components/scrollbars.scss

21 lines
333 B
SCSS
Raw Normal View History

2016-03-23 05:26:27 +00:00
@import '../constants/colors';
@import '../constants/dimensions';
2016-03-21 05:47:49 +00:00
::-webkit-scrollbar {
2016-07-20 23:16:28 +00:00
width: $padding-sm;
height: $padding-sm;
2016-03-21 05:47:49 +00:00
}
2016-04-07 01:11:16 +00:00
::-webkit-scrollbar-track {
2016-07-20 23:16:28 +00:00
background: $hl-xxxs;
2016-04-07 01:11:16 +00:00
}
2016-03-21 05:47:49 +00:00
::-webkit-scrollbar-thumb {
2016-07-20 00:34:47 +00:00
background: $hl-md;
2016-07-20 23:16:28 +00:00
border-radius: $padding-sm;
2016-03-21 05:47:49 +00:00
}
::-webkit-scrollbar-corner {
background: transparent;
}