From cd69d9afc829d56c9f2a6f30009189923a8824ae Mon Sep 17 00:00:00 2001 From: Claire Gravely Date: Fri, 14 Sep 2018 21:06:40 +0000 Subject: [PATCH] Bug 20554: (QA follow up) Remove padding in mobile view This patch removes the padding for mobile screen sizes. --- koha-tmpl/opac-tmpl/bootstrap/css/src/_responsive.scss | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/css/src/_responsive.scss b/koha-tmpl/opac-tmpl/bootstrap/css/src/_responsive.scss index e0452af..b27de10 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/css/src/_responsive.scss +++ b/koha-tmpl/opac-tmpl/bootstrap/css/src/_responsive.scss @@ -10,7 +10,7 @@ } } -@media only screen and ( min-width: 0 ) and ( max-width: 390px ){ +@media only screen and ( min-width: 0 ) and ( max-width: 440px ){ /* Screens bewteen 0 and 390 pixels wide */ .ui-tabs .ui-tabs-nav li a, .statictabs li a { @@ -20,6 +20,10 @@ .input-fluid { width: 90%; } + + #wrap { + padding: 0px; + } } @media only screen and ( min-width: 342px ) and ( max-width: 479px ) { -- 2.1.4