handling new block variations

This commit is contained in:
Antoine M 2024-08-14 15:11:23 +02:00
parent c50639134e
commit 31bc05ce1e

View File

@ -2,9 +2,32 @@
@apply relative w-full; @apply relative w-full;
img { img {
@apply rounded-lg w-full object-cover; @apply rounded-lg w-full object-cover;
max-height: 300px;
} }
figcaption { figcaption {
@apply bg-white absolute px-8 py-2 text-center bottom-4 left-4 z-10 rounded-lg font-bold text-base; @apply px-1 py-2 font-bold text-base;
}
&--fixed-height {
img {
max-height: 300px;
}
}
&--legend-sticky {
figcaption {
@apply absolute left-0 bottom-4 left-4 z-10 rounded-lg bg-white text-center w-fit px-8;
}
}
&--legend-has-title {
figcaption {
@apply font-normal;
.figcaption-title {
@apply font-bold;
&:after {
content: ' :';
}
}
}
} }
} }