mirror of
https://github.com/maputnik/editor.git
synced 2025-12-06 06:10:00 +00:00
Keeps the repo clean, same as several other of our repos --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
20 lines
388 B
SCSS
20 lines
388 B
SCSS
*:not(select) {
|
|
&::-webkit-scrollbar {
|
|
background-color: #26282e;
|
|
width: 8px;
|
|
height: 8px;
|
|
}
|
|
|
|
&::-webkit-scrollbar-thumb {
|
|
border-radius: 6px;
|
|
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
|
|
background-color: #666;
|
|
padding-left: 2px;
|
|
padding-right: 2px;
|
|
}
|
|
|
|
// Styling for Firefox
|
|
scrollbar-width: thin;
|
|
scrollbar-color: #666 #26282e;
|
|
}
|