We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2c632d3 + 9cb12c6 commit 2bf4e33Copy full SHA for 2bf4e33
src/Html/Font.php
@@ -14,6 +14,6 @@ public function toStyle(): string {
14
if($this->name) array_push($list, $this->name);
15
if($this->family) array_push($list, $this->family);
16
if(sizeof($list) == 0) return "";
17
- return "font-family:" . join($list, ',') . ";";
+ return "font-family:" . join(' ', $list) . ";";
18
}
19
-}
+}
0 commit comments