Compare commits

...

1 Commits

Author SHA1 Message Date
Emilia Allison 820a5aed93
fix: base.scss not importable correctly 2022-10-02 17:46:10 -04:00
1 changed files with 11 additions and 3 deletions

View File

@ -1,5 +1,4 @@
@use "sass:math"; @use "sass:math";
@mixin reset {
/* ----------------- */ /* ----------------- */
/* Custom Properties */ /* Custom Properties */
/* ----------------- */ /* ----------------- */
@ -31,6 +30,7 @@ $ff-serif: serif;
$ff-sans-cond: sans-serif; $ff-sans-cond: sans-serif;
$ff-sans: sans-serif; $ff-sans: sans-serif;
@mixin utility{
/* --------------- */ /* --------------- */
/* Utility Classes */ /* Utility Classes */
/* --------------- */ /* --------------- */
@ -133,7 +133,9 @@ section:not(:last-of-type) {
footer { footer {
margin-top: 3vh; margin-top: 3vh;
} }
}
@mixin reset {
/* ----- */ /* ----- */
/* Reset */ /* Reset */
/* ----- */ /* ----- */
@ -168,6 +170,13 @@ body {
main { main {
margin-left: 1vw; margin-left: 1vw;
margin-top: 1vh; margin-top: 1vh;
* {
z-index: 2;
}
}
footer {
z-index: 2;
} }
img, picture { img, picture {
@ -189,9 +198,8 @@ input, button, textarea, select {
scroll-behaviour: auto !important; scroll-behaviour: auto !important;
} }
} }
}
@include reset; }
/* -------------------- */ /* -------------------- */
/* Non-Reusable Classes */ /* Non-Reusable Classes */