diff options
| author | XhmikosR <[email protected]> | 2020-01-02 12:02:57 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-01-02 12:02:57 +0200 |
| commit | e2530d38aab03ccdbc2b169ce5bb13769146831f (patch) | |
| tree | 93f2ed2121cd32a4f3061434d716fe322f5005b4 | |
| parent | 7b990eb2f4790912734d699cdc6e83b5b5c4274c (diff) | |
| download | bootstrap-e2530d38aab03ccdbc2b169ce5bb13769146831f.tar.xz bootstrap-e2530d38aab03ccdbc2b169ce5bb13769146831f.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/content/docs/4.3/content/reboot.md | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/site/content/docs/4.3/content/reboot.md b/site/content/docs/4.3/content/reboot.md index 391d5d423..8ba80fc1b 100644 --- a/site/content/docs/4.3/content/reboot.md +++ b/site/content/docs/4.3/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; {{< /highlight >}} 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. |
