webstead: put border on tickboxes, not table cells

That means the borders are clickable, which is what I want.
This commit is contained in:
Ben Harris 2025-10-04 17:27:21 +01:00
parent 7ba57f2e27
commit 96ee19d038

View File

@ -25,13 +25,13 @@
#pixels td {
padding: 0;
line-height: 0;
border: 1px solid;
}
#pixels input {
appearance: none;
margin: 0;
width: calc(var(--pix) - 2px);
height: calc(var(--pix) - 2px);
width: var(--pix);
height: var(--pix);
border: 1px solid;
}
#pixels input:checked {
background: currentColor;