From 2e2f9e23799a1dcb32bf9fbea11ce5bea88e0466 Mon Sep 17 00:00:00 2001 From: Cameron Otsuka Date: Wed, 17 Dec 2025 12:11:53 -0800 Subject: [PATCH] fix summary marker turning into emoji on ios --- src/styles/style.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/styles/style.css b/src/styles/style.css index 3a60f50..3c82f02 100644 --- a/src/styles/style.css +++ b/src/styles/style.css @@ -105,4 +105,10 @@ code { clip: rect(0, 0, 0, 0); word-wrap: normal; border: 0; +} +details > summary { + list-style-type: "▸"; +} +details[open] > summary { + list-style-type: "▾"; } \ No newline at end of file -- 2.52.0