insomnia/app/css/components/scrollbars.scss

17 lines
258 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-03-23 05:26:27 +00:00
width: 6px;
height: 6px;
2016-03-21 05:47:49 +00:00
}
2016-04-07 01:11:16 +00:00
::-webkit-scrollbar-track {
2016-04-12 06:03:52 +00:00
//background: $hl-xxs;
2016-04-07 01:11:16 +00:00
}
2016-03-21 05:47:49 +00:00
::-webkit-scrollbar-thumb {
2016-04-06 07:19:36 +00:00
background: $hl-md;
2016-03-23 05:26:27 +00:00
border-radius: $radius-md;
2016-03-21 05:47:49 +00:00
}