mirror of
https://github.com/flarum/framework.git
synced 2024-11-24 11:32:40 +08:00
Use default system font instead of Open Sans
This commit is contained in:
parent
c15bbc9c5e
commit
07298e165d
|
@ -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;
|
||||
|
|
|
@ -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).'">';
|
||||
|
|
Loading…
Reference in New Issue
Block a user