From ae7e718783c78da47611baf987575b408735c595 Mon Sep 17 00:00:00 2001 From: Nonimart Date: Wed, 25 Jun 2025 18:11:40 +0200 Subject: [PATCH] FEATURE Introducing component style --- .../css/components/article-informations.css | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 resources/css/components/article-informations.css diff --git a/resources/css/components/article-informations.css b/resources/css/components/article-informations.css new file mode 100644 index 0000000..44eecb4 --- /dev/null +++ b/resources/css/components/article-informations.css @@ -0,0 +1,26 @@ +.article-informations { + @apply flex flex-col gap-y-28; + .issue-informations { + @apply flex gap-x-20 gap-y-8 flex-wrap; + + .content-tab__title { + @apply w-full shrink-0 mb-3; + } + } + .issue-number, + .issue-parution-date, + .issue-updated-date { + &__label { + @apply mb-3 tracking-widest font-bold; + } + &__value { + @apply !text-primary mb-2; + } + } +} + +.coordination-numero { + .author-card { + @apply mb-6; + } +}