mirror of
https://github.com/Theaninova/TheaninovOS.git
synced 2025-12-12 19:46:20 +00:00
10 lines
113 B
SCSS
10 lines
113 B
SCSS
@mixin unset($rec: false) {
|
|
all: unset;
|
|
|
|
@if $rec {
|
|
* {
|
|
all: unset
|
|
}
|
|
}
|
|
}
|