mirror of
https://github.com/Theaninova/TheaninovOS.git
synced 2026-01-04 23:02:48 +00:00
10 lines
94 B
SCSS
10 lines
94 B
SCSS
@mixin unset($rec: false) {
|
|
all: unset;
|
|
|
|
@if $rec {
|
|
* {
|
|
all: unset;
|
|
}
|
|
}
|
|
}
|