mirror of
https://github.com/Kong/insomnia.git
synced 2026-04-21 06:37:36 -04:00
20 lines
300 B
SCSS
20 lines
300 B
SCSS
@import '../constants/colors';
|
|
@import '../constants/dimensions';
|
|
|
|
::-webkit-scrollbar {
|
|
width: 6px;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
height: 6px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
//background: rgba(100, 100, 100, 0.1);
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: $hl-md;
|
|
border-radius: $radius-md;
|
|
}
|