diff --git a/src/wp-content/themes/twentynineteen/style-editor.css b/src/wp-content/themes/twentynineteen/style-editor.css index 522bb790b6..1e0bd69390 100644 --- a/src/wp-content/themes/twentynineteen/style-editor.css +++ b/src/wp-content/themes/twentynineteen/style-editor.css @@ -659,6 +659,8 @@ body .wp-block.aligncenter { /** === Base Typography === */ body { + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; font-size: 22px; font-family: "NonBreakingSpaceOverride", "Hoefler Text", Garamond, "Times New Roman", serif; line-height: 1.8; diff --git a/src/wp-content/themes/twentynineteen/style-editor.scss b/src/wp-content/themes/twentynineteen/style-editor.scss index db50c94383..8359aacacb 100644 --- a/src/wp-content/themes/twentynineteen/style-editor.scss +++ b/src/wp-content/themes/twentynineteen/style-editor.scss @@ -94,6 +94,8 @@ body { /** === Base Typography === */ body { + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; font-size: $font__size_base; @include font-family( $font__body ); line-height: $font__line-height-body;