From fa8ff5e09d6132c7167ea47d8e2f17894d3903cd Mon Sep 17 00:00:00 2001 From: Samuel Mannehed Date: Fri, 9 Dec 2022 14:07:33 +0100 Subject: [PATCH] Set checkbox size using px rather than em We don't set other sizes using em, it makes this stand out. --- app/styles/input.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/styles/input.css b/app/styles/input.css index 59bd111b..98ec26c3 100644 --- a/app/styles/input.css +++ b/app/styles/input.css @@ -93,8 +93,8 @@ input[type=checkbox] { background-color: white; border: 1px solid dimgrey; border-radius: 3px; - width: 0.8em; - height: 0.8em; + width: 13px; + height: 13px; vertical-align: bottom; } input[type=checkbox]:checked {