From 982f7a3f5db871857885d34d5eeb06360bc58377 Mon Sep 17 00:00:00 2001 From: Edmund Hung Date: Sun, 10 Mar 2024 19:21:32 +0100 Subject: [PATCH] fix safari summary marker style --- app/styles.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/app/styles.css b/app/styles.css index b5c61c9..2956f9f 100644 --- a/app/styles.css +++ b/app/styles.css @@ -1,3 +1,10 @@ @tailwind base; @tailwind components; @tailwind utilities; + +/** + * To hide the default marker of the summary element on Safari + */ +summary.marker\:content-none::-webkit-details-marker { + display: none; +}