1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-09-15 05:25:33 -04:00

a bit more SCSS cleanup

This commit is contained in:
2021-11-01 11:43:12 -04:00
parent 37add71ffb
commit 5911c0081e
6 changed files with 39 additions and 32 deletions

View File

@@ -1,5 +1,5 @@
@use "../abstracts/themes";
@use "../abstracts/functions" as *;
@use "../abstracts/functions";
// Colorful Homepage
$colors-home: (
@@ -193,12 +193,12 @@ div.layout-home {
}
}
// Loop through $colors-home (see abstracts/_variables)
// Loop through $colors-home (see above)
@each $id, $colors in $colors-home {
@each $theme, $color in $colors {
@at-root body.#{$theme} div.layout-home a##{$id} {
color: $color;
background-image: underline-hack($color);
background-image: functions.underline-hack($color);
}
}
}