mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2025-01-08 23:10:57 +01:00
13 lines
263 B
SCSS
13 lines
263 B
SCSS
|
.darkScrollbar::-webkit-scrollbar {
|
||
|
background-color: #313131;
|
||
|
width: 10px;
|
||
|
}
|
||
|
|
||
|
.darkScrollbar::-webkit-scrollbar-thumb {
|
||
|
border-radius: 6px;
|
||
|
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
|
||
|
background-color: #555;
|
||
|
padding-left: 2px;
|
||
|
padding-right: 2px;
|
||
|
}
|