From 59a65c3eb5d094cb55122558905807cdddaaf4c8 Mon Sep 17 00:00:00 2001 From: Nonimart Date: Mon, 23 Jun 2025 16:12:54 +0200 Subject: [PATCH] INCLUDE new css footnote components --- resources/css/components/footnotes-index.css | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 resources/css/components/footnotes-index.css diff --git a/resources/css/components/footnotes-index.css b/resources/css/components/footnotes-index.css new file mode 100644 index 0000000..f73be2d --- /dev/null +++ b/resources/css/components/footnotes-index.css @@ -0,0 +1,19 @@ +.footnotes-index { + counter-reset: footnote-index; + + @apply mb-4; + li { + @apply mb-4; + &:before { + content: counter(footnote-index); + counter-increment: footnote-index; + @apply mr-2 text-white text-base inline-flex bg-primary rounded-full w-8 h-8 items-center justify-center; + } + } + a { + @apply text-carhop-gray opacity-80; + &[active='true'] { + @apply text-primary font-bold; + } + } +}