aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <[email protected]>2019-08-29 11:10:06 +0300
committerGitHub <[email protected]>2019-08-29 11:10:06 +0300
commit84cba07246f935ed43e8e7a1b000ef32febf333f (patch)
treef17b62e872980ffb661df523a806c387ca8b43a0
parent1d69e6ccfd40430852db3f29bf0122c02c0d71bd (diff)
downloadbootstrap-84cba07246f935ed43e8e7a1b000ef32febf333f.tar.xz
bootstrap-84cba07246f935ed43e8e7a1b000ef32febf333f.zip
theming.md: bring `:root` up to par with Scss. (#29323)
Also, add a warning in _root.scss so that we don't miss it again.
-rw-r--r--scss/_root.scss1
-rw-r--r--site/content/docs/4.3/getting-started/theming.md2
2 files changed, 2 insertions, 1 deletions
diff --git a/scss/_root.scss b/scss/_root.scss
index 055ac32fb..dcad3ee01 100644
--- a/scss/_root.scss
+++ b/scss/_root.scss
@@ -1,3 +1,4 @@
+// Do not forget to update getting-started/theming.md!
:root {
// Custom variable values only support SassScript inside `#{}`.
@each $color, $value in $colors {
diff --git a/site/content/docs/4.3/getting-started/theming.md b/site/content/docs/4.3/getting-started/theming.md
index 28b57e4ad..b999e4909 100644
--- a/site/content/docs/4.3/getting-started/theming.md
+++ b/site/content/docs/4.3/getting-started/theming.md
@@ -391,7 +391,7 @@ Here are the variables we include (note that the `:root` is required). They're l
--danger: #dc3545;
--light: #f8f9fa;
--dark: #343a40;
- --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
+ --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
--font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
{{< /highlight >}}