From 58e0acf4623fb11ddadd9b1f4b8d00aeb8a2b011 Mon Sep 17 00:00:00 2001 From: Thad Miller Date: Thu, 5 Mar 2026 12:14:00 -0500 Subject: [PATCH] [bugfix] bootstrap overrides must come before loading bootstrap --- src/assets/css/main.scss | 28 +++++++++++++++++----------- 1 file changed, 17 insertions(+), 11 deletions(-) diff --git a/src/assets/css/main.scss b/src/assets/css/main.scss index 6af3b5b..25912ef 100644 --- a/src/assets/css/main.scss +++ b/src/assets/css/main.scss @@ -1,16 +1,6 @@ -@import "_bootstrap"; - /* -------------------------------------------------- - Root Variables + Bootstrap overrides -------------------------------------------------- */ -:root { - --total: 11; /* Number of items in the energy wheel */ - --radius: 40px; /* Circle radius */ -} - -html { - scroll-behavior: smooth; -} $grid-breakpoints: ( xs: 0, @@ -31,6 +21,22 @@ $container-max-widths: ( xxxl: 1840px ) !default; + +@import "_bootstrap"; + +/* -------------------------------------------------- + Root Variables +-------------------------------------------------- */ +:root { + --total: 11; /* Number of items in the energy wheel */ + --radius: 40px; /* Circle radius */ +} + +html { + scroll-behavior: smooth; +} + + /* -------------------------------------------------- Layout -------------------------------------------------- */