diff options
| author | XhmikosR <[email protected]> | 2020-01-02 12:02:57 +0200 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2020-01-02 12:11:56 +0200 |
| commit | 0d1aee6a2fecc865066c90e85422e192ca69ba34 (patch) | |
| tree | ad532e3cfbf263238ceaac59b7a89f1edb9cc78a | |
| parent | 3c0cf9365b20d6108e4d067d3434c9eac02d5507 (diff) | |
| download | bootstrap-0d1aee6a2fecc865066c90e85422e192ca69ba34.tar.xz bootstrap-0d1aee6a2fecc865066c90e85422e192ca69ba34.zip | |
reboot.md: Add missing Noto Sans font (#29937)
* reboot.md: Add missing Noto Sans font
* Sans serif order fix
Co-authored-by: Martijn Cuppens <[email protected]>
| -rw-r--r-- | site/docs/4.4/content/reboot.md | 10 |
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 c78f4c442..362c0a980 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. |
