FEATURE Handling special color for director

This commit is contained in:
Antoine M 2025-07-01 16:53:26 +02:00
parent 16fa84fefe
commit 0c3f4109f1

View File

@ -2,7 +2,22 @@
@apply max-w-screen-xl px-12 mx-auto py-24; @apply max-w-screen-xl px-12 mx-auto py-24;
.author-card { .author-card {
@apply bg-white p-12 border border-carhop-green-700 flex flex-col; @apply bg-white p-8 border border-carhop-green-700 mb-0 flex flex-col;
&--director {
@apply bg-primary;
.author-card__name,
.author-card__bio {
@apply text-white;
}
.author-card__email {
@apply bg-white text-primary;
&:hover {
@apply bg-carhop-green-900;
}
}
}
&__profile-picture { &__profile-picture {
@apply w-full h-32 object-cover mb-6 border border-carhop-green-700 relative; @apply w-full h-32 object-cover mb-6 border border-carhop-green-700 relative;