From e2adf44a1f6d1cc86789cab8327b64cd352b6773 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Benqu=C3=A9?= Date: Wed, 1 Sep 2021 14:37:02 +0100 Subject: [PATCH] Responsive form settings layout --- www/form/app-form.less | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/www/form/app-form.less b/www/form/app-form.less index d763ed204..03fde2389 100644 --- a/www/form/app-form.less +++ b/www/form/app-form.less @@ -116,8 +116,19 @@ width: 100% !important; .cp-form-creator-settings { display: flex; - justify-content: space-evenly; + justify-content: space-between; flex-wrap: wrap; + div { + flex-basis: 33.333333%; + padding-right: 20px; + } + } + } + @media screen and (max-width: 600px) { + .cp-form-creator-settings { + div { + flex-basis: 50%; + } } } }