9 lines
148 B
SCSS
9 lines
148 B
SCSS
|
// Get the checkbox definition
|
||
|
@import 'class';
|
||
|
|
||
|
// Define it for the element checkbox
|
||
|
[type=checkbox] {
|
||
|
@extend %radio;
|
||
|
@extend %checkbox;
|
||
|
}
|