mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 03:00:58 +08:00
29 lines
445 B
SCSS
29 lines
445 B
SCSS
@import "../../themes/ionic.globals";
|
|
|
|
// Checkbox
|
|
// --------------------------------------------------
|
|
|
|
ion-checkbox {
|
|
position: relative;
|
|
display: inline-block;
|
|
}
|
|
|
|
ion-checkbox input {
|
|
@include position(0, null, null, 0);
|
|
@include margin(0);
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
border: 0;
|
|
background: transparent;
|
|
cursor: pointer;
|
|
|
|
-webkit-appearance: none;
|
|
-moz-appearance: none;
|
|
appearance: none;
|
|
}
|
|
|