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:
parent
7519f2d4ad
commit
fa8ff5e09d
|
@ -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 {
|
||||||
|
|
Loading…
Reference in New Issue