mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 11:17:19 +08:00
23 lines
376 B
SCSS
23 lines
376 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;
|
|
}
|