You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The files lib/gutenberg/style-editor.css and lib/gutenberg/front-end.css each contain a couple of font-family specifications that seem to be incorrect (probably due to copy/paste errors):
font-family: "Source Sans Pro", serif;
This should probably be either
font-family: "Source Sans Pro", sans-serif;
or
font-family: "Source Serif Pro", serif;
In the latter case, the Source Serif Pro font will also need to be added to line 30 of config/appearance.php.
The text was updated successfully, but these errors were encountered:
The files
lib/gutenberg/style-editor.css
andlib/gutenberg/front-end.css
each contain a couple of font-family specifications that seem to be incorrect (probably due to copy/paste errors):font-family: "Source Sans Pro", serif;
This should probably be either
font-family: "Source Sans Pro", sans-serif;
or
font-family: "Source Serif Pro", serif;
In the latter case, the Source Serif Pro font will also need to be added to line 30 of
config/appearance.php
.The text was updated successfully, but these errors were encountered: