Files
ionic-framework/scss/ionic/_checkbox.scss
2013-10-11 16:41:45 -05:00

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;
}
}