mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
17 lines
274 B
SCSS
17 lines
274 B
SCSS
@import '../constants/colors';
|
|
@import '../constants/dimensions';
|
|
|
|
::-webkit-scrollbar {
|
|
width: $padding-sm;
|
|
height: $padding-sm;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: $hl-xxxs;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: $hl-md;
|
|
border-radius: $padding-sm;
|
|
}
|