mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-21 21:15:24 +08:00
28 lines
643 B
SCSS
28 lines
643 B
SCSS
|
|
// Scrollbars
|
|
// --------------------------------------------------
|
|
// Styling for dekstop webkit browsers
|
|
// These do not apply for mobile browsers
|
|
|
|
::-webkit-scrollbar {
|
|
width: 9px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:vertical,
|
|
::-webkit-scrollbar-thumb:horizontal {
|
|
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,
|
|
::-webkit-scrollbar-thumb:horizontal:active {
|
|
background: rgba(0, 0, 0, 0.6);
|
|
border: 2px solid transparent;
|
|
border-radius: 20px;
|
|
background-clip: padding-box;
|
|
min-height: 10px;
|
|
}
|