refining modal style

This commit is contained in:
Antoine M 2024-02-15 18:52:33 +01:00
parent ee47b3a3b0
commit cb75964383

View File

@ -12,3 +12,25 @@ dialog {
} }
overflow: visible; overflow: visible;
} }
.modal-content-container {
@apply w-full;
box-sizing: border-box;
@apply p-8 grid gap-x-8;
grid-template-columns: 1fr 1fr;
h2 {
@apply text-5xl py-8;
}
&__content {
}
&__cover {
@apply px-6 py-12 bg-neutral-50;
align-self: center;
box-sizing: border-box;
img {
@apply block w-full h-auto object-contain object-center;
}
}
}