mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-21 04:53:58 +08:00
29 lines
615 B
SCSS
29 lines
615 B
SCSS
|
|
// Scrollbars
|
|
// --------------------------------------------------
|
|
// Styling for dekstop webkit browsers
|
|
// These do not apply for mobile browsers
|
|
|
|
.css-scrollbars {
|
|
|
|
::-webkit-scrollbar {
|
|
width: 9px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:vertical {
|
|
background: rgba(0, 0, 0, 0.4);
|
|
border: 2px solid transparent;
|
|
border-radius: 20px;
|
|
background-clip: padding-box;
|
|
min-height: 10px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:vertical:active {
|
|
background: rgba(0, 0, 0, 0.6);
|
|
border: 2px solid transparent;
|
|
border-radius: 20px;
|
|
background-clip: padding-box;
|
|
min-height: 10px;
|
|
}
|
|
|
|
} |