From f41f32207fbbd1aa3ae1593a43b86a1d168c5043 Mon Sep 17 00:00:00 2001 From: Antoine M Date: Tue, 24 Mar 2026 15:31:37 +0100 Subject: [PATCH] STYLE introducing component styling --- resources/css/blocks/see-also.css | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 resources/css/blocks/see-also.css diff --git a/resources/css/blocks/see-also.css b/resources/css/blocks/see-also.css new file mode 100644 index 0000000..2b28d31 --- /dev/null +++ b/resources/css/blocks/see-also.css @@ -0,0 +1,31 @@ +.see-also { + @apply bg-carhop-orange-50 py-24 px-4 md:px-12 xl:px-24; + &.alignfull { + @apply !my-0; + } + .inner { + @apply max-w-screen-2xl mx-auto; + @apply lg:flex gap-16 xl:gap-32; + } + + &__subtitle { + br { + display: none; + } + @screen lg { + br { + display: block; + } + } + } + + .post-list { + .post-card + .post-card { + @apply mt-6; + } + } +} + +.is-website-carhop .explore-tags { + @apply bg-carhop-orange-50; +}