mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 19:21:34 +08:00
21 lines
298 B
SCSS
21 lines
298 B
SCSS
|
|
// Switch
|
|
// --------------------------------------------------
|
|
|
|
|
|
ion-switch {
|
|
display: block;
|
|
@include user-select-none();
|
|
}
|
|
|
|
ion-switch media-switch {
|
|
margin: 0;
|
|
cursor: pointer;
|
|
}
|
|
|
|
ion-switch[aria-disabled=true] {
|
|
pointer-events: none;
|
|
opacity: 0.5;
|
|
color: $subdued-text-color;
|
|
}
|