aboutsummaryrefslogtreecommitdiff
path: root/.config/ags/style/mixins/unset.scss
diff options
context:
space:
mode:
Diffstat (limited to '.config/ags/style/mixins/unset.scss')
-rw-r--r--.config/ags/style/mixins/unset.scss9
1 files changed, 9 insertions, 0 deletions
diff --git a/.config/ags/style/mixins/unset.scss b/.config/ags/style/mixins/unset.scss
new file mode 100644
index 0000000..eb80af5
--- /dev/null
+++ b/.config/ags/style/mixins/unset.scss
@@ -0,0 +1,9 @@
+@mixin unset($rec: false) {
+ all: unset;
+
+ @if $rec {
+ * {
+ all: unset
+ }
+ }
+}