From 243fab1c186588330e08462cc63f0320cb92ff5d Mon Sep 17 00:00:00 2001 From: Abdallah Samman Date: Sat, 8 Dec 2018 09:24:54 +0200 Subject: [PATCH] fix: preserve outline0 for checkboxes and radios only --- scss/base/generic.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scss/base/generic.scss b/scss/base/generic.scss index 7114e92..79b53a2 100644 --- a/scss/base/generic.scss +++ b/scss/base/generic.scss @@ -37,6 +37,7 @@ button, } // Prevent stray pixels on focused inputs such as checkboxes and radios -input { +input[type="radio"], +input[type="checkbox"] { outline: 0; }