refining responsive

This commit is contained in:
Antoine M 2024-05-28 12:39:40 +02:00
parent 337ea9406a
commit b1e7db2f6e

View File

@ -3,9 +3,18 @@
@apply pb-6 !text-2xl text-center;
}
.gfield_radio {
@apply flex justify-between max-w-lg text-center mx-auto;
@apply grid sm:flex justify-between max-w-lg text-center mx-auto;
@media screen and (max-width: 400px) {
grid-template-columns: auto auto;
width: fit-content;
column-gap: 1rem;
}
.gchoice {
@apply flex flex-col justify-center items-center;
&:last-child {
grid-column: auto / span 2;
}
label.gform-field-label {
@apply !ml-0 mt-3 !font-normal;
}