insomnia/app/ui/css/components/scrollbars.less

21 lines
343 B
Plaintext
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-09-09 00:32:36 +00:00
width: @scrollbar-width;
height: @scrollbar-width;
2016-03-21 05:47:49 +00:00
}
2016-04-07 01:11:16 +00:00
::-webkit-scrollbar-track {
2016-08-29 17:58:59 +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-08-29 17:58:59 +00:00
background: @hl-md;
border-radius: @padding-sm;
2016-03-21 05:47:49 +00:00
}
::-webkit-scrollbar-corner {
background: transparent;
}