From 865f4042db7f30d142f6bb75e84e1a8c22304cb8 Mon Sep 17 00:00:00 2001 From: Nonimart Date: Wed, 25 Jun 2025 18:09:57 +0200 Subject: [PATCH] FEATURE Introducing the component --- resources/css/components/article-references.css | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 resources/css/components/article-references.css diff --git a/resources/css/components/article-references.css b/resources/css/components/article-references.css new file mode 100644 index 0000000..a01cd61 --- /dev/null +++ b/resources/css/components/article-references.css @@ -0,0 +1,16 @@ +.article-references { + @apply mb-8; + .references-list { + @apply flex flex-col gap-4; + + .reference-item { + @apply pl-6 relative; + a { + @apply underline underline-offset-4 decoration-1; + } + &:before { + @apply content-[''] absolute top-3 left-0 w-3 h-3 bg-black rounded-full inline-block filter-primary; + } + } + } +}