From 820a5aed93d73cd742dd77f7303106923eb47ee9 Mon Sep 17 00:00:00 2001 From: Emilia Date: Sun, 2 Oct 2022 17:46:10 -0400 Subject: [PATCH] fix: base.scss not importable correctly --- src/cool-stuff/css-purgatory/base/scss/base.scss | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/src/cool-stuff/css-purgatory/base/scss/base.scss b/src/cool-stuff/css-purgatory/base/scss/base.scss index 515ee26..9119e5e 100644 --- a/src/cool-stuff/css-purgatory/base/scss/base.scss +++ b/src/cool-stuff/css-purgatory/base/scss/base.scss @@ -1,5 +1,4 @@ @use "sass:math"; -@mixin reset { /* ----------------- */ /* Custom Properties */ /* ----------------- */ @@ -31,6 +30,7 @@ $ff-serif: serif; $ff-sans-cond: sans-serif; $ff-sans: sans-serif; +@mixin utility{ /* --------------- */ /* Utility Classes */ /* --------------- */ @@ -133,7 +133,9 @@ section:not(:last-of-type) { footer { margin-top: 3vh; } +} +@mixin reset { /* ----- */ /* Reset */ /* ----- */ @@ -168,6 +170,13 @@ body { main { margin-left: 1vw; margin-top: 1vh; + * { + z-index: 2; + } +} + +footer { + z-index: 2; } img, picture { @@ -189,9 +198,8 @@ input, button, textarea, select { scroll-behaviour: auto !important; } } -} -@include reset; +} /* -------------------- */ /* Non-Reusable Classes */