From 37d5a1c2ddcd678caa75bf7ecb194ddbe1b611c0 Mon Sep 17 00:00:00 2001 From: Matthew Huntington Date: Thu, 27 Apr 2023 11:10:13 -0400 Subject: [PATCH] better layout --- public/app.css | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/public/app.css b/public/app.css index 5546f48..d6f225c 100644 --- a/public/app.css +++ b/public/app.css @@ -1,3 +1,7 @@ +body { + margin:0; +} + td,th { border:1px solid black; padding:1em; @@ -11,11 +15,11 @@ tbody tr:nth-child(even) td{ main { height:100vh; display:grid; - grid-template-columns: repeat(3, minmax(10px, 1fr)); + grid-template-columns: minmax(10px, 1fr), minmax(10px, 2fr), minmax(10px, 2fr); grid-template-rows: repeat(2, minmax(10px, 1fr)); } section { - overflow:scroll; + overflow:auto; } #timer { grid-area: 1 / 1 / 3 / 2; }