mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
34 lines
413 B
SCSS
34 lines
413 B
SCSS
|
|
// iOS Segment
|
|
// --------------------------------------------------
|
|
|
|
|
|
.ion-segment {
|
|
|
|
button,
|
|
[button] {
|
|
border-width: 1px;
|
|
|
|
transition: 100ms all linear;
|
|
|
|
min-height: 3.3rem;
|
|
line-height: 3.3rem;
|
|
|
|
&.active {
|
|
color: white;
|
|
}
|
|
|
|
border-style: solid;
|
|
|
|
&:first-of-type {
|
|
border-right-width: 0px;
|
|
}
|
|
|
|
&:last-of-type {
|
|
border-left-width: 0px;
|
|
}
|
|
|
|
}
|
|
|
|
}
|