From 1b29dac14b7bf5bd9e3d2fe77fe927e715e7fc63 Mon Sep 17 00:00:00 2001 From: curben <2809763-curben@users.noreply.gitlab.com> Date: Fri, 30 Aug 2019 06:05:49 +0100 Subject: [PATCH] fix(css): override input padding in sanitize/forms * conflict with padding-left of .searchBox --- themes/typing/source/css/typing.css | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/themes/typing/source/css/typing.css b/themes/typing/source/css/typing.css index 91e3363..bdf9e20 100644 --- a/themes/typing/source/css/typing.css +++ b/themes/typing/source/css/typing.css @@ -226,7 +226,7 @@ h6 { /* * Restrict sizing to the page width in all browsers (opinionated). - * sanitize.css/page.css + * sanitize/page */ iframe, img, @@ -985,6 +985,15 @@ pre .keyword { box-sizing: border-box; } +/* + * Override sanitize/forms + * to prevent conflict with + * .searchBox padding-left + */ +input { + padding: 0; +} + /* highlight the text box when focused */ .searchBox:focus { border: 1px solid #1abc9c;