From 91ee1f846219301549938c07cd00ece9ad0cb5cb Mon Sep 17 00:00:00 2001 From: Cucumberrbob <128094686+Cucumberrbob@users.noreply.github.com> Date: Fri, 28 Feb 2025 12:38:20 +0000 Subject: [PATCH] use @forward not @import for importing styles --- client/src/styles.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/styles.scss b/client/src/styles.scss index 8649996..8d15669 100644 --- a/client/src/styles.scss +++ b/client/src/styles.scss @@ -1,2 +1,2 @@ -@import "../node_modules/bulma/bulma.sass"; -@import "../node_modules/@fortawesome/fontawesome-free/css/all.css"; +@forward "../node_modules/bulma/bulma.sass"; +@forward "../node_modules/@fortawesome/fontawesome-free/css/all.css";