Set a white background-color on checkboxes

Otherwise they appear with the same color as the background, which is
not what we want. They should always be white.
This commit is contained in:
Samuel Mannehed
2022-12-09 12:43:30 +01:00
parent faf921b023
commit 7519f2d4ad

View File

@@ -90,6 +90,7 @@ option {
input[type=checkbox] {
position: relative;
appearance: none;
background-color: white;
border: 1px solid dimgrey;
border-radius: 3px;
width: 0.8em;