mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-15 18:40:05 +00:00
37732ea6a9
Refactor some components into Mustache. With the footer refactor addressed in #75, it should solve most of the incompatibility issues caused by previous hacks used to generate the footer
24 lines
337 B
Plaintext
24 lines
337 B
Plaintext
//
|
|
// Citizen - Scrollbar Styles
|
|
// https://starcitizen.tools
|
|
//
|
|
|
|
* {
|
|
scrollbar-width: thin;
|
|
scrollbar-color: @base-70 transparent;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
width: 4px;
|
|
height: 4px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: transparent;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background-color: @base-70;
|
|
border: 4px solid transparent;
|
|
}
|