introducing component size variations

This commit is contained in:
Antoine M 2024-01-24 08:58:21 +01:00
parent 00235ff0e9
commit 19c9cf198c

View File

@ -9,8 +9,21 @@
&__page-icon { &__page-icon {
@apply hidden md:block; @apply hidden md:block;
height: fit-content; height: fit-content;
/* default */
max-height: 400px; max-height: 400px;
max-width: 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 { &__cta-link {
@apply text-neutral-900 font-bold mt-1 block; @apply text-neutral-900 font-bold mt-1 block;