Skip to content

Commit

Permalink
Make font family 'sans-serif' use Roboto font
Browse files Browse the repository at this point in the history
  • Loading branch information
Milos Roknic committed Aug 15, 2019
1 parent 6d473c2 commit 3a3f600
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lib/fonts/dompdf_font_family_cache.php
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?php return array (
'sans-serif' => array(
'normal' => $fontDir . '/Helvetica',
'bold' => $fontDir . '/Helvetica-Bold',
'italic' => $fontDir . '/Helvetica-Oblique',
'bold_italic' => $fontDir . '/Helvetica-BoldOblique',
'normal' => $fontDir . '/Roboto',
'bold' => $fontDir . '/Roboto-Bold',
'italic' => $fontDir . '/Roboto-Italic',
'bold_italic' => $fontDir . '/Roboto-BoldItalic',
),
'times' => array(
'normal' => $fontDir . '/Times-Roman',
Expand Down Expand Up @@ -95,4 +95,4 @@
'italic' => $fontDir . '/ZCOOLXiaoWei',
'bold_italic' => $fontDir . '/ZCOOLXiaoWei',
),
) ?>
) ?>

0 comments on commit 3a3f600

Please sign in to comment.