forked from mirror/_s
Use the system font stack from WP admin (#1416)
This commit is contained in:
parent
fd76af274d
commit
e8650e1ee9
|
@ -1,4 +1,6 @@
|
|||
$font__main: sans-serif;
|
||||
// stylelint-disable value-keyword-case
|
||||
$font__main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
||||
// stylelint-enable value-keyword-case
|
||||
$font__code: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
|
||||
$font__pre: "Courier 10 Pitch", courier, monospace;
|
||||
$font__line-height-body: 1.5;
|
||||
|
|
|
@ -374,7 +374,7 @@ select,
|
|||
optgroup,
|
||||
textarea {
|
||||
color: #404040;
|
||||
font-family: sans-serif;
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
||||
font-size: 1rem;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
|
Reference in New Issue