From 89a81c7469b07d06adcddf44378bb4bc242eb343 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. Signed-off-by: Jonathan Druart Signed-off-by: Nick Clemens --- 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 e0452af04b..b27de10462 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.39.5