From 657e7cbfe67fe77dda9a59e931d3d5d87143e0de Mon Sep 17 00:00:00 2001 From: Shannon Sterz Date: Mon, 30 Dec 2024 21:18:15 +0100 Subject: [PATCH] try to fix marker alignment in safari --- index.html | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index 4175c3d..56d6550 100644 --- a/index.html +++ b/index.html @@ -209,12 +209,14 @@ list-style-type: ''; display: flex; justify-content: space-between; + align-items: center; } details > summary > p { font-style: italic; text-decoration: underline; margin: 0; + display: block; } details[open] > summary > p { @@ -222,11 +224,12 @@ } details > summary::-webkit-details-marker { - display:none; + display: none; } details > summary::after { content: '⤵️'; + display: block; } details[open] > summary {