insomnia/app/ui/css/components/scrollbar.less
Gregory Schier 8452e8b777 Some eslint refactoring (#109)
* Fixed duplication kve bug

* Some changes

* Add proptypes linting

* Fixed proptypes even more

* Filename linting
2017-03-07 21:52:17 -08:00

21 lines
347 B
Plaintext

@import '../constants/colors';
@import '../constants/dimensions';
::-webkit-scrollbar {
width: @scrollbar-width;
height: @scrollbar-width;
}
::-webkit-scrollbar-track {
background-color: @hl-xs;
}
::-webkit-scrollbar-thumb {
background: @hl-md;
border-radius: @padding-sm;
}
::-webkit-scrollbar-corner {
background: transparent;
}