Use default system font instead of Open Sans

This commit is contained in:
Toby Zerner 2018-09-21 11:20:17 +09:30
parent c15bbc9c5e
commit 07298e165d
2 changed files with 2 additions and 4 deletions

View File

@ -9,7 +9,7 @@
body {
background: @body-bg;
color: @text-color;
font-family: "Open Sans", Helvetica, Arial, sans-serif;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
font-size: 13px;
line-height: 1.5;
overflow-y: scroll;

View File

@ -37,9 +37,7 @@ class Meta implements ContentInterface
private function buildHead(HtmlDocument $document)
{
$head = [
'font' => '<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700,600">'
];
$head = [];
if ($faviconUrl = array_get($document->getForumApiDocument(), 'data.attributes.faviconUrl')) {
$head['favicon'] = '<link rel="shortcut icon" href="'.e($faviconUrl).'">';