diff --git a/hever/print.css b/hever/print.css index 4df2c9794..c59e3f575 100644 --- a/hever/print.css +++ b/hever/print.css @@ -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; diff --git a/hever/sass/print.scss b/hever/sass/print.scss index 451aa434a..558e427cb 100755 --- a/hever/sass/print.scss +++ b/hever/sass/print.scss @@ -34,8 +34,8 @@ 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 Georgia, "Times New Roman", Times, serif; // For browsers without CSS custom properties support. + font: 13pt var( --font-base, Georgia, "Times New Roman", Times, serif ); line-height: 1.3; background: #fff !important; color: #000;