From 3753ea90ce4f9e0fc28b9cc7ee0f7fec3176e668 Mon Sep 17 00:00:00 2001 From: Luca Pisani Date: Mon, 9 Nov 2015 17:12:29 +0100 Subject: [PATCH] avoi the scrollbar on print page --- assets/stylesheets/responsive.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/assets/stylesheets/responsive.css b/assets/stylesheets/responsive.css index 3560c1d..d6b2a05 100644 --- a/assets/stylesheets/responsive.css +++ b/assets/stylesheets/responsive.css @@ -779,3 +779,11 @@ width: 100%; } } + +@media print and (max-width: 899px) +{ + /* avoid the scrollbar on print */ + body, html { + height: auto; + } +}