From d330f9bee55bac53eb18d468761a825abb9dd6e8 Mon Sep 17 00:00:00 2001 From: Nonimart Date: Wed, 25 Jun 2025 12:24:32 +0200 Subject: [PATCH] REFACTOR Renaming the component --- resources/css/components/authors-list.css | 12 ++++++++++++ resources/css/components/revue-authors-list.css | 5 ----- 2 files changed, 12 insertions(+), 5 deletions(-) create mode 100644 resources/css/components/authors-list.css delete mode 100644 resources/css/components/revue-authors-list.css diff --git a/resources/css/components/authors-list.css b/resources/css/components/authors-list.css new file mode 100644 index 0000000..7be7f54 --- /dev/null +++ b/resources/css/components/authors-list.css @@ -0,0 +1,12 @@ +.authors-list { + @apply mb-20; + &__title { + @apply text-4xl font-medium mb-4 uppercase; + } + &__article-title { + @apply mb-8 underline underline-offset-8 decoration-1 opacity-90; + } + .author-card { + @apply mb-8; + } +} diff --git a/resources/css/components/revue-authors-list.css b/resources/css/components/revue-authors-list.css deleted file mode 100644 index 40474b3..0000000 --- a/resources/css/components/revue-authors-list.css +++ /dev/null @@ -1,5 +0,0 @@ -.revue-authors-list { - &__title { - @apply text-4xl font-medium mb-4 uppercase; - } -}