From 8c1b277ad2a9582f07ef9c6028b117cffae961e0 Mon Sep 17 00:00:00 2001 From: Long Tran Date: Fri, 14 Dec 2018 23:00:47 +1100 Subject: [PATCH] increased search input spacing on mobile and desktop --- website/static/css/custom.css | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/website/static/css/custom.css b/website/static/css/custom.css index a8336e54a..a35e7a3ba 100644 --- a/website/static/css/custom.css +++ b/website/static/css/custom.css @@ -127,9 +127,34 @@ a:visited { } @media only screen and (min-width: 1024px) { + .reactNavSearchWrapper input#search_input_react { + height: 100%; + padding-top: 8px; + padding-bottom: 8px; + padding-left: 38px; + } + + .navSearchWrapper:before { + left: 24px; + } + + .navSearchWrapper:after { + left: 35px; + } } @media only screen and (max-width: 1023px) { + .reactNavSearchWrapper input#search_input_react { + padding-left: 38px; + } + + .navSearchWrapper:before { + left: 24px; + } + + .navSearchWrapper:after { + left: 35px; + } } @media only screen and (min-width: 1400px) {