Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartijn Cuppens <martijn.cuppens@gmail.com>2020-06-09 11:20:53 +0300
committerGitHub <noreply@github.com>2020-06-09 11:20:53 +0300
commite9f7a1d826a9bae2d791345d0519b0c1a5c796f0 (patch)
treea88c1a482a0109058e6cfd49d4e93baffecac923 /scss/bootstrap-reboot.scss
parente9da984ef4c40c14a4de125555da94a0ea094556 (diff)
Fix undefined custom properties in reboot (#30981)
Diffstat (limited to 'scss/bootstrap-reboot.scss')
-rw-r--r--scss/bootstrap-reboot.scss3
1 files changed, 3 insertions, 0 deletions
diff --git a/scss/bootstrap-reboot.scss b/scss/bootstrap-reboot.scss
index 96948be63d..3779e36dc5 100644
--- a/scss/bootstrap-reboot.scss
+++ b/scss/bootstrap-reboot.scss
@@ -8,5 +8,8 @@
@import "functions";
@import "variables";
+// Prevent the usage of custom properties since we don't add them to `:root` in reboot
+$font-family-base: $font-family-sans-serif; // stylelint-disable-line scss/dollar-variable-default
+$font-family-code: $font-family-monospace; // stylelint-disable-line scss/dollar-variable-default
@import "mixins";
@import "reboot";