From 3c317d509da64bf8922063340784cd9a06e41375 Mon Sep 17 00:00:00 2001 From: Hugh Rundle Date: Sat, 9 Jul 2022 14:42:42 +1000 Subject: [PATCH] fix sass styles import bug Using @import caused styles to double up on elements, in some cases preventing the correct override behaviour. Usint @use instead fixes this, and is recommended by Sass for exactly this reason. --- bookwyrm/static/css/vendor/shepherd.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bookwyrm/static/css/vendor/shepherd.scss b/bookwyrm/static/css/vendor/shepherd.scss index 0d79663fe..1238b65ae 100644 --- a/bookwyrm/static/css/vendor/shepherd.scss +++ b/bookwyrm/static/css/vendor/shepherd.scss @@ -3,7 +3,7 @@ Based on Shepherd v 10.0.0 styles. */ -@import 'bulma/bulma.sass'; +@use 'bulma/bulma.sass'; .shepherd-button { @extend .button.mr-2;