Files
Adam Bradley c41801c55f css cleanup
2015-09-05 21:02:45 -05:00

46 lines
681 B
SCSS

// Segment
// --------------------------------------------------
ion-segment {
display: block;
}
.ion-segment {
display: flex;
flex: 1;
width: 100%;
button,
[button] {
flex: 1;
display: block;
overflow: hidden;
padding: 0 16px;
width: 0;
border-width: 1px 0px 1px 1px;
border-radius: 0;
text-align: center;
text-overflow: ellipsis;
white-space: nowrap;
background: none;
&:first-of-type {
border-radius: $button-border-radius 0px 0px $button-border-radius;
}
&:last-of-type {
border-right-width: 1px;
border-radius: 0px $button-border-radius $button-border-radius 0px;
}
}
}