Set checkbox size using px rather than em

We don't set other sizes using em, it makes this stand out.
This commit is contained in:
Samuel Mannehed 2022-12-09 14:07:33 +01:00
parent 7519f2d4ad
commit fa8ff5e09d
1 changed files with 2 additions and 2 deletions

View File

@ -93,8 +93,8 @@ input[type=checkbox] {
background-color: white; background-color: white;
border: 1px solid dimgrey; border: 1px solid dimgrey;
border-radius: 3px; border-radius: 3px;
width: 0.8em; width: 13px;
height: 0.8em; height: 13px;
vertical-align: bottom; vertical-align: bottom;
} }
input[type=checkbox]:checked { input[type=checkbox]:checked {