diff options
author | Dhyego Fernando <dhyegofernando@gmail.com> | 2016-03-10 13:50:35 -0400 |
---|---|---|
committer | Dhyego Fernando <dhyegofernando@gmail.com> | 2016-03-10 13:50:35 -0400 |
commit | 587d16ceef9e8f11230d6f183b483388075d3609 (patch) | |
tree | ec1ed93b0cc70b28fc3dcf824c0a4e17adb74057 /css | |
parent | de2ab07334766e6df2e3e69cd58a820e40d6349e (diff) | |
download | fosdem-2018-presentation-587d16ceef9e8f11230d6f183b483388075d3609.tar fosdem-2018-presentation-587d16ceef9e8f11230d6f183b483388075d3609.tar.gz |
fix(PDF Export): Mark as important `width`, `height` and add `zoom` properties to fix CSS rules which were overrided by inline styles
Diffstat (limited to 'css')
-rw-r--r-- | css/print/pdf.css | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/css/print/pdf.css b/css/print/pdf.css index 9ed90d6..e4a1b7d 100644 --- a/css/print/pdf.css +++ b/css/print/pdf.css @@ -60,8 +60,9 @@ ul, ol, div, p { } .reveal .slides { position: static; - width: 100%; - height: auto; + width: 100% !important; + height: auto !important; + zoom: 1 !important; left: auto; top: auto; @@ -157,4 +158,3 @@ ul, ol, div, p { position: absolute; font-size: 14px; } - |