material: replace display: flex with block in print mode

This change is a workaround for a reported issue with printing flex
items on Firefox

See: https://bugzilla.mozilla.org/show_bug.cgi?id=939897

Fixes #4251

Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
This commit is contained in:
Kevin Decherf 2020-01-25 15:40:29 +01:00
parent 52cd86f1c2
commit 45582f2992
2 changed files with 7 additions and 1 deletions

View file

@ -187,3 +187,9 @@
display: none;
}
}
@media only print {
body {
display: block;
}
}

File diff suppressed because one or more lines are too long