From b612c48fb2162dbf2a93901fa16ccd2f93a4c2b2 Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Sat, 25 Apr 2020 20:10:11 +0200 Subject: [PATCH] Don't hardcode grid cell sizes --- assets/style.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/assets/style.css b/assets/style.css index 58457ec..e4e5fbf 100644 --- a/assets/style.css +++ b/assets/style.css @@ -7,8 +7,8 @@ html, body { body { display: grid; - grid-template-rows: auto 40px; - grid-template-columns: 200px auto; + grid-template-rows: auto max-content; + grid-template-columns: max-content auto; font-family: monospace; } @@ -38,7 +38,7 @@ body { } #composer input { display: block; - height: 100%; + height: 35px; width: 100%; box-sizing: border-box; padding: 10px;