Fix forms editor responsive UI

pull/1/head
yflory 3 years ago
parent eb1d8478d6
commit 5f22b00ba5

@ -119,18 +119,25 @@
display: flex;
justify-content: space-between;
flex-wrap: wrap;
div {
& > div {
flex-basis: 33.333333%;
padding-right: 20px;
}
}
}
@media screen and (max-width: 600px) {
}
@media screen and (max-width: 600px) and (min-width: 400px) {
.cp-form-creator-settings {
div {
flex-basis: 50%;
& > div {
flex-basis: 50% !important;
}
}
}
@media screen and (max-width: 400px) {
.cp-form-creator-settings {
& > div {
flex-basis: 100% !important;
}
}
}

Loading…
Cancel
Save