From c695d68c8d128aeaecef7083ca9b613faca07f4b Mon Sep 17 00:00:00 2001 From: YashRE42 Date: Tue, 7 Apr 2020 05:48:45 +0530 Subject: [PATCH] portico: Refactor input scss. This commit modifies the padding and margin of the input selector so that is uses sane values such as 25ps top margin, 5px bottom margin and 10px top and bottom padding rather than trying to make uneven values balance each other out. (old values are 25px top margin, 4px bottom margin, 9px top padding, 11px bottom padding) --- static/styles/portico/portico-signin.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/styles/portico/portico-signin.scss b/static/styles/portico/portico-signin.scss index aafcc16ad5..67b923f86f 100644 --- a/static/styles/portico/portico-signin.scss +++ b/static/styles/portico/portico-signin.scss @@ -399,8 +399,8 @@ html { input[type=text], input[type=email], input[type=password] { - padding: 9px 32px 11px 12px; - margin: 25px 0 4px; + padding: 10px 32px 10px 12px; + margin: 25px 0 5px; font-family: "Source Sans Pro"; font-size: 1.2rem;