mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-15 10:38:19 +00:00
22 lines
347 B
Plaintext
22 lines
347 B
Plaintext
|
//
|
||
|
// Citizen - Scrollbar Styles
|
||
|
// https://starcitizen.tools
|
||
|
//
|
||
|
|
||
|
body::-webkit-scrollbar {
|
||
|
width: 11px;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
scrollbar-width: thin;
|
||
|
scrollbar-color: @base-70 @base-80;
|
||
|
}
|
||
|
|
||
|
body::-webkit-scrollbar-track {
|
||
|
background: @base-80;
|
||
|
}
|
||
|
|
||
|
body::-webkit-scrollbar-thumb {
|
||
|
background-color: @base-70;
|
||
|
border: 3px solid @base-80;
|
||
|
}
|