From db281af77c9f4cb14406d341a57bd82903dea244 Mon Sep 17 00:00:00 2001 From: Konstantin Kostov Date: Sat, 13 Apr 2024 11:21:09 +0200 Subject: [PATCH] improve bullets --- theme/static_src/src/styles.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/theme/static_src/src/styles.css b/theme/static_src/src/styles.css index ebde559..39c691d 100644 --- a/theme/static_src/src/styles.css +++ b/theme/static_src/src/styles.css @@ -44,6 +44,16 @@ @apply my-2 mb-3 text-lg leading-relaxed; } + .blog-content ul { + @apply list-none list-inside; + } + + .blog-content ul li::before { + content: "👉"; + font-family: NotoEmoji; + @apply inline-block mr-2 py-1; + } + img.blog { @apply inset-0 h-full w-full rounded-2xl bg-gray-50 object-contain shadow-lg; }