Balasana: print - fonts should be passed as different values

This commit is contained in:
Andrés 2019-10-15 18:32:52 +02:00
parent f117b24006
commit de56f11931
2 changed files with 2 additions and 2 deletions

View file

@ -27,7 +27,7 @@ Andreas Hecht in https://www.jotform.com/blog/css-perfect-print-stylesheet-98272
/* Fonts */
body {
font: 13pt Georgia, "Times New Roman", Times, serif;
font: 13pt var(--font-base, 'Georgia, "Times New Roman", Times, serif');
font: 13pt var(--font-base, Georgia, "Times New Roman", Times, serif);
line-height: 1.3;
background: #fff !important;
color: #000;

View file

@ -35,7 +35,7 @@ Andreas Hecht in https://www.jotform.com/blog/css-perfect-print-stylesheet-98272
body {
font: 13pt Georgia, "Times New Roman", Times, serif; // For browsers without support for CSS custom properties.
font: 13pt var( --font-base, 'Georgia, "Times New Roman", Times, serif' );
font: 13pt var( --font-base, Georgia, "Times New Roman", Times, serif );
line-height: 1.3;
background: #fff !important;
color: #000;