diff options
author | Noah Loomans <noahloomans@gmail.com> | 2016-11-09 12:16:49 +0100 |
---|---|---|
committer | Noah Loomans <noahloomans@gmail.com> | 2016-11-09 12:16:49 +0100 |
commit | d27b780a576bbf4fa722f896a35e9d1ae5d47e13 (patch) | |
tree | de32e16cb9d93b00849a32c43a4a0edf23db9526 | |
parent | dccf5bdcb32d3019ac0410f195b00716b38ca75f (diff) |
attempt to fix safari print bug
-rw-r--r-- | public/untisinfo.css | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/public/untisinfo.css b/public/untisinfo.css index d74a7aa..119e21e 100644 --- a/public/untisinfo.css +++ b/public/untisinfo.css @@ -9,3 +9,17 @@ html, body { center { margin: 5px; } + +@media print { + html, body { + overflow: inherit; + width: inherit; + height: inherit; + margin: inherit; + -webkit-overflow-scrolling: inherit; + } + + center { + margin: inherit; + } +} |