mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2025-01-03 13:58:43 +00:00
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.
This commit is contained in:
parent
b41c826a0d
commit
3c317d509d
1 changed files with 1 additions and 1 deletions
2
bookwyrm/static/css/vendor/shepherd.scss
vendored
2
bookwyrm/static/css/vendor/shepherd.scss
vendored
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue