10 lines
191 B
SCSS
10 lines
191 B
SCSS
|
@mixin reset($reset-type: false){
|
||
|
@if($reset-type){
|
||
|
@if($reset-type == global){
|
||
|
@include global-reset;
|
||
|
}
|
||
|
@if($reset-type == html5){
|
||
|
@include reset-html5;
|
||
|
}
|
||
|
}
|
||
|
}
|