From 43e7488a9b732d4636fcfc9715059f5de5c16116 Mon Sep 17 00:00:00 2001 From: Thibaut Broggi Date: Mon, 13 Nov 2017 11:47:47 +0100 Subject: [PATCH] Fix inputs block width --- static/style.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/static/style.css b/static/style.css index a422890..264022b 100644 --- a/static/style.css +++ b/static/style.css @@ -11,7 +11,7 @@ body, form { margin: auto; color: #497ed5; min-height: 100vh; - max-width: 100%; + width: 100%; font-family: 'FiraSans'; background-color: #ebf3ff; } @@ -264,7 +264,8 @@ textarea, input[type="text"] { } #inputs { - width: 50%; + min-width: 30%; + max-width: 30%; margin-left: 7vw; } -- GitLab