From 7ed63d4387b76539c77799f4282d6d042c88444c Mon Sep 17 00:00:00 2001 From: FNItsLegend Date: Sat, 19 Aug 2023 23:27:52 +0300 Subject: [PATCH] fixed a bug caused by a bootstrap breaking change (see https://github.com/twbs/bootstrap/issues/38683) --- assets/variables.scss | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/assets/variables.scss b/assets/variables.scss index 0ba3aa303..abd3baf6f 100644 --- a/assets/variables.scss +++ b/assets/variables.scss @@ -1,4 +1,5 @@ @use "sass:list"; +@use "sass:math"; @import "../data/variables"; $fontExtra: null !default; @@ -26,7 +27,7 @@ $aside-width: 332px; $modal-backdrop-opacity: .1; $glassBlur: 12px; -$glassBlur-sm: $glassBlur / 2; +$glassBlur-sm: math.div($glassBlur, 2); $wide-escape-size: 6rem; @@ -34,6 +35,7 @@ $square-button-size: 2.2rem; @import "~bootstrap/scss/functions"; @import "~bootstrap/scss/variables"; +@import "~bootstrap/scss/variables-dark"; @import "~bootstrap/scss/mixins"; @import "~bootstrap/scss/maps"; @import "~bootstrap/scss/utilities";