From e80f37603bb8a699083fee18959277e3b7688cb7 Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Thu, 8 Oct 2020 10:10:39 +0200 Subject: [PATCH] prevent breaking narrow layouts with inputs --- src/ui/web/css/form.css | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ui/web/css/form.css b/src/ui/web/css/form.css index e9771611..bdb47bec 100644 --- a/src/ui/web/css/form.css +++ b/src/ui/web/css/form.css @@ -18,6 +18,7 @@ limitations under the License. .form input { display: block; width: 100%; + min-width: 0; box-sizing: border-box; }