From 96ee19d038deeff931990c854423cb041eed8a3f Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Sat, 4 Oct 2025 17:27:21 +0100 Subject: [PATCH] webstead: put border on tickboxes, not table cells That means the borders are clickable, which is what I want. --- webstead.xhtml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/webstead.xhtml b/webstead.xhtml index 98da8d5..686ce6d 100644 --- a/webstead.xhtml +++ b/webstead.xhtml @@ -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; -- 2.30.2