Merge pull request #748 from tailwindcss/default-to-system-font

Use system font stack by default instead of sans-serif
This commit is contained in:
Adam Wathan 2019-03-12 20:30:52 -04:00 committed by GitHub
commit 731f5e0341
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 24 additions and 0 deletions

View File

@ -421,6 +421,14 @@ ul {
* Tailwind custom reset styles
*/
/**
* Use the system font stack as a sane default.
*/
html {
font-family: -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";
}
/**
* Allow adding a border to an element by just adding a border-width.
*

View File

@ -421,6 +421,14 @@ ul {
* Tailwind custom reset styles
*/
/**
* Use the system font stack as a sane default.
*/
html {
font-family: -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";
}
/**
* Allow adding a border to an element by just adding a border-width.
*

View File

@ -69,6 +69,14 @@ ul {
* Tailwind custom reset styles
*/
/**
* Use the system font stack as a sane default.
*/
html {
font-family: -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";
}
/**
* Allow adding a border to an element by just adding a border-width.
*