mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
47 lines
709 B
SCSS
47 lines
709 B
SCSS
@import "../../themes/ionic.globals";
|
|
|
|
// Segment
|
|
// --------------------------------------------------
|
|
|
|
:host {
|
|
/**
|
|
* @prop --background: Background of the segment button
|
|
*/
|
|
--ripple-color: currentColor;
|
|
|
|
@include font-smoothing();
|
|
|
|
display: flex;
|
|
|
|
position: relative;
|
|
|
|
align-items: stretch;
|
|
justify-content: center;
|
|
|
|
width: 100%;
|
|
|
|
background: var(--background);
|
|
|
|
font-family: $font-family-base;
|
|
|
|
text-align: center;
|
|
|
|
contain: paint;
|
|
}
|
|
|
|
|
|
// Segment: Scrollable
|
|
// --------------------------------------------------
|
|
|
|
:host(.segment-scrollable) {
|
|
justify-content: start;
|
|
|
|
width: auto;
|
|
|
|
overflow-x: auto;
|
|
}
|
|
|
|
:host(.segment-scrollable::-webkit-scrollbar) {
|
|
display: none;
|
|
}
|