From d61dd822c8b2408c092c09bce0fae0b54fecd34e Mon Sep 17 00:00:00 2001 From: Conrad Zelck <git@simpel.cc> Date: Sun, 8 Oct 2023 01:13:00 +0200 Subject: [PATCH] style: make summary width a bit wider Otherwise marker and label are on two lines. Signed-off-by: Conrad Zelck <git@simpel.cc> --- style.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/style.css b/style.css index 510114e..c1572ab 100644 --- a/style.css +++ b/style.css @@ -292,7 +292,8 @@ details summary { summary { /* just to avoid a big white border on focus */ - width: 8ch; + /* make it a bit wider as iOS otherwise would make a new line after the marker */ + width: 10ch; } p.label { -- GitLab