mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 03:00:58 +08:00
32 lines
499 B
SCSS
32 lines
499 B
SCSS
// Segment View
|
|
// --------------------------------------------------
|
|
|
|
:host {
|
|
display: flex;
|
|
|
|
height: 100%;
|
|
|
|
overflow-x: scroll;
|
|
scroll-snap-type: x mandatory;
|
|
|
|
/* Hide scrollbar in Firefox */
|
|
scrollbar-width: none;
|
|
|
|
/* Hide scrollbar in IE and Edge */
|
|
-ms-overflow-style: none;
|
|
}
|
|
|
|
/* Hide scrollbar in webkit */
|
|
:host::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
|
|
:host(.segment-view-disabled) {
|
|
scroll-snap-type: none;
|
|
|
|
touch-action: none;
|
|
overflow-x: hidden;
|
|
|
|
opacity: 0.7;
|
|
}
|