mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
38 lines
580 B
SCSS
38 lines
580 B
SCSS
@import "../../globals.core";
|
|
|
|
// Segment
|
|
// --------------------------------------------------
|
|
|
|
$segment-button-padding: 0 16px !default;
|
|
|
|
|
|
ion-segment {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex: 1;
|
|
width: 100%;
|
|
}
|
|
|
|
.segment-button {
|
|
position: relative;
|
|
overflow: hidden;
|
|
display: block;
|
|
|
|
margin-left: 0;
|
|
margin-right: 0;
|
|
padding: $segment-button-padding;
|
|
|
|
flex: 1;
|
|
width: 0;
|
|
|
|
border-width: 1px 0px 1px 1px;
|
|
border-radius: 0;
|
|
|
|
text-align: center;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
|
|
background: none;
|
|
}
|