mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-06 22:29:44 +08:00
20 lines
282 B
SCSS
20 lines
282 B
SCSS
|
|
.checkbox {
|
|
|
|
input {
|
|
display: none;
|
|
}
|
|
|
|
/* what the checkbox looks like when its not checked */
|
|
.handle {
|
|
width: 30px;
|
|
height: 30px;
|
|
background: red;
|
|
}
|
|
|
|
/* what it looks like when it is checked */
|
|
input:checked + .handle {
|
|
background: green;
|
|
}
|
|
|
|
} |