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