mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 19:21:34 +08:00
45 lines
699 B
SCSS
45 lines
699 B
SCSS
@import "../../themes/ionic.globals";
|
|
|
|
// Segment
|
|
// --------------------------------------------------
|
|
|
|
:host {
|
|
@include font-smoothing();
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
width: 100%;
|
|
|
|
font-family: $font-family-base;
|
|
|
|
text-align: center;
|
|
}
|
|
|
|
|
|
// Segment: Disabled
|
|
// --------------------------------------------------
|
|
|
|
:host(.segment-disabled),
|
|
::slotted(.segment-button-disabled) {
|
|
pointer-events: none;
|
|
}
|
|
|
|
|
|
// Segment: Scrollable
|
|
// --------------------------------------------------
|
|
|
|
:host(.segment-scrollable) {
|
|
justify-content: start;
|
|
|
|
width: auto;
|
|
|
|
overflow-x: scroll;
|
|
}
|
|
|
|
:host(.segment-scrollable::-webkit-scrollbar) {
|
|
display: none;
|
|
}
|