From 8d197e0562ff51b7e39ff85b5111612094d0c3ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Thu, 19 Mar 2020 16:53:28 +0100 Subject: Calendar table now not larger than allowed. --- static/style.css | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'static') diff --git a/static/style.css b/static/style.css index d38d8833..96bd47f4 100644 --- a/static/style.css +++ b/static/style.css @@ -128,6 +128,11 @@ body { NOTE that I'm not sure this is actually the correct way to do it. */ grid-template-rows: 2em; + grid-auto-rows: 1fr; + + max-height: 100%; + /* Apparently needed to ensure that parent can contain all its children */ + min-height: 0; } .caltable .thead { -- cgit v1.2.3