From 32c4bb4610972882fdd0dcedb62be99a69b5217f Mon Sep 17 00:00:00 2001 From: Antoine M Date: Tue, 24 Feb 2026 17:30:50 +0100 Subject: [PATCH] FEATURE Introducing styling --- resources/css/pages/singles.css | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 resources/css/pages/singles.css diff --git a/resources/css/pages/singles.css b/resources/css/pages/singles.css new file mode 100644 index 0000000..74aa9f0 --- /dev/null +++ b/resources/css/pages/singles.css @@ -0,0 +1,26 @@ +.page-single { + .post-toolbar { + @apply px-8; + } + + .tags__title { + @apply text-lg uppercase font-semibold mt-0 my-4 nunito; + } + + .tags-list { + @apply flex flex-wrap gap-4; + } + + .content-wrapper { + &[data-active-tab='post'] { + #post-authors { + @apply hidden; + } + } + &[data-active-tab='authors'] { + .post-content { + @apply hidden; + } + } + } +}