Scrollbar styling #3

This commit is contained in:
alistair3149 2019-11-27 23:49:32 -05:00
parent 6be4ab278b
commit 9c43acc754

View file

@ -4,19 +4,19 @@
//
body::-webkit-scrollbar {
width: 11px;
width: 4px;
}
body {
scrollbar-width: thin;
scrollbar-color: @base-70 @base-80;
scrollbar-color: @base-70 transparent;
}
body::-webkit-scrollbar-track {
background: @base-80;
background: transparent;
}
body::-webkit-scrollbar-thumb {
background-color: @base-70;
border: 3px solid @base-80;
border: 4px solid transparent;
}