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:
authorXhmikosR <xhmikosr@gmail.com>2020-01-02 13:02:57 +0300
committerXhmikosR <xhmikosr@gmail.com>2020-01-02 13:11:56 +0300
commit0d1aee6a2fecc865066c90e85422e192ca69ba34 (patch)
treead532e3cfbf263238ceaac59b7a89f1edb9cc78a /site/docs/4.4
parent3c0cf9365b20d6108e4d067d3434c9eac02d5507 (diff)
reboot.md: Add missing Noto Sans font (#29937)
* reboot.md: Add missing Noto Sans font * Sans serif order fix Co-authored-by: Martijn Cuppens <martijn.cuppens@gmail.com>
Diffstat (limited to 'site/docs/4.4')
-rw-r--r--site/docs/4.4/content/reboot.md10
1 files changed, 7 insertions, 3 deletions
diff --git a/site/docs/4.4/content/reboot.md b/site/docs/4.4/content/reboot.md
index c78f4c4424..362c0a980d 100644
--- a/site/docs/4.4/content/reboot.md
+++ b/site/docs/4.4/content/reboot.md
@@ -40,11 +40,15 @@ $font-family-sans-serif:
// Windows
"Segoe UI",
// Android
- "Roboto",
+ Roboto,
// Basic web fallback
- "Helvetica Neue", Arial, sans-serif,
+ "Helvetica Neue", Arial,
+ // Linux
+ "Noto Sans",
+ // Sans serif fallback
+ sans-serif,
// Emoji fonts
- "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !default;
+ "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !default;
{% endhighlight %}
This `font-family` is applied to the `<body>` and automatically inherited globally throughout Bootstrap. To switch the global `font-family`, update `$font-family-base` and recompile Bootstrap.