From b0e335a5922b7a9650a8fe83d3478c7729728fe7 Mon Sep 17 00:00:00 2001 From: Antoine M Date: Tue, 25 Nov 2025 15:11:57 +0100 Subject: [PATCH] STYLE update content-meta styles with new flex layout and additional variants for revue-issue --- resources/css/components/content-meta.css | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/resources/css/components/content-meta.css b/resources/css/components/content-meta.css index 18db154..b6e21ab 100644 --- a/resources/css/components/content-meta.css +++ b/resources/css/components/content-meta.css @@ -19,6 +19,24 @@ &__reading-time { line-height: 27px; - /* @apply text-sm text-gray-500; */ + } +} + +.content-meta { + @apply flex flex-wrap !items-center justify-between gap-2; + &__revue-issue { + @apply !px-3 !py-2 font-semibold h-fit; + @apply bg-carhop-green-700 text-white; + + &--green { + @apply bg-carhop-green-700 !text-white; + } + + &--white { + @apply bg-white !text-carhop-green-700; + } + /* &--primary { + @apply bg-carhop-green-700 text-white; + } */ } }