fixes issue where italic fonts disappeared when printing to pdf (closes #230)
This commit is contained in:
parent
be4c55cd65
commit
8e79f8592a
2 changed files with 14 additions and 10 deletions
|
|
@ -169,8 +169,14 @@ body {
|
|||
* DEFAULT ELEMENT STYLES
|
||||
*********************************************/
|
||||
|
||||
/* Fixes issue in Chrome where italic fonts did not appear when printing to PDF */
|
||||
.reveal:after {
|
||||
content: '';
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
/* Preserve aspect ratio and scale image so it's bound within the section */
|
||||
.reveal img {
|
||||
/* preserve aspect ratio and scale image so it's bound within the section */
|
||||
max-width: 100%;
|
||||
max-height: 100%;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue