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