diff options
| author | Alan Orth <[email protected]> | 2020-12-15 09:10:09 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-12-15 09:10:09 +0200 |
| commit | e1f561b53cb2396efb2bfcf1265591db5b9071a7 (patch) | |
| tree | d4a2276f3e23b8843ac2594fdd8e98f22fea2c05 | |
| parent | e2324731de863a1248eac1aa6acf74002053c327 (diff) | |
| download | bootstrap-e1f561b53cb2396efb2bfcf1265591db5b9071a7.tar.xz bootstrap-e1f561b53cb2396efb2bfcf1265591db5b9071a7.zip | |
docs: Add system-ui to native font stack documentation (#32455)
system-ui was added to the native font stack in #30561 but the docs were not updated.
| -rw-r--r-- | site/content/docs/5.0/content/reboot.md | 2 | ||||
| -rw-r--r-- | site/content/docs/5.0/getting-started/rtl.md | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/site/content/docs/5.0/content/reboot.md b/site/content/docs/5.0/content/reboot.md index 4613a7a11..6529e5ef2 100644 --- a/site/content/docs/5.0/content/reboot.md +++ b/site/content/docs/5.0/content/reboot.md @@ -33,6 +33,8 @@ Bootstrap utilizes a "native font stack" or "system font stack" for optimum text ```scss $font-family-sans-serif: + // Cross-platform generic font family (default user interface font) + system-ui, // Safari for macOS and iOS (San Francisco) -apple-system, // Chrome < 56 for macOS (San Francisco) diff --git a/site/content/docs/5.0/getting-started/rtl.md b/site/content/docs/5.0/getting-started/rtl.md index aeaf8c8c3..cd209298b 100644 --- a/site/content/docs/5.0/getting-started/rtl.md +++ b/site/content/docs/5.0/getting-started/rtl.md @@ -116,6 +116,8 @@ For example, to switch from `Helvetica Neue Webfont` for LTR to `Helvetica Neue ```scss $font-family-sans-serif: Helvetica Neue #{"/* rtl:insert:Arabic */"}, + // Cross-platform generic font family (default user interface font) + system-ui, // Safari for macOS and iOS (San Francisco) -apple-system, // Chrome < 56 for macOS (San Francisco) |
