From 19c9cf198cea3d3362cd9eb5ae4f8a9b53e6b483 Mon Sep 17 00:00:00 2001 From: Antoine M Date: Wed, 24 Jan 2024 08:58:21 +0100 Subject: [PATCH] introducing component size variations --- resources/css/blocks/content-page-header.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/resources/css/blocks/content-page-header.css b/resources/css/blocks/content-page-header.css index 88eef09..e5f7e83 100644 --- a/resources/css/blocks/content-page-header.css +++ b/resources/css/blocks/content-page-header.css @@ -9,8 +9,21 @@ &__page-icon { @apply hidden md:block; height: fit-content; + /* default */ max-height: 400px; max-width: 400px; + &--small { + max-height: 300px; + max-width: 300px; + } + &--medium { + max-height: 400px; + max-width: 400px; + } + &--large { + max-height: 500px; + max-width: 500px; + } } &__cta-link { @apply text-neutral-900 font-bold mt-1 block;