From d697d752c28a3aebb42ef0b403254f9557f16759 Mon Sep 17 00:00:00 2001 From: sabaimran <65192171+sabaimran@users.noreply.github.com> Date: Sun, 5 Nov 2023 15:23:42 -0800 Subject: [PATCH] Use repeat rather than manually specify auto in grid-template-rows Co-authored-by: Debanjum --- src/khoj/interface/web/base_config.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/khoj/interface/web/base_config.html b/src/khoj/interface/web/base_config.html index 8137dd76..8e33677c 100644 --- a/src/khoj/interface/web/base_config.html +++ b/src/khoj/interface/web/base_config.html @@ -301,7 +301,7 @@ body { display: grid; grid-template-columns: 1fr; - grid-template-rows: 1fr auto auto auto auto; + grid-template-rows: 1fr repeat(4, auto); } body > * { grid-column: 1;