From 893fa1e94869d8d2208afc0d42e547f13e3f3929 Mon Sep 17 00:00:00 2001 From: evazion Date: Sat, 22 Jan 2022 18:29:33 -0600 Subject: [PATCH] css: fix margins. Fix regression in d6b1302e0. Fixes the related tags list having extra space between tags because of default margins around the checkboxes. --- app/javascript/src/styles/base/010_reset.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/javascript/src/styles/base/010_reset.scss b/app/javascript/src/styles/base/010_reset.scss index 30fa1c48f..b27494803 100644 --- a/app/javascript/src/styles/base/010_reset.scss +++ b/app/javascript/src/styles/base/010_reset.scss @@ -2,7 +2,7 @@ box-sizing: border-box; } -body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, blockquote, dl, dd, menu { +body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, blockquote, dl, dd, menu, input { margin: 0; }