From ffe66b848a6f0584d51e55151c35f47e3cbbbab9 Mon Sep 17 00:00:00 2001 From: sabaimran Date: Sun, 25 Jun 2023 11:27:41 -0700 Subject: [PATCH] Use a single column tempalte for config plugins when in mobile --- src/khoj/interface/web/base_config.html | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/khoj/interface/web/base_config.html b/src/khoj/interface/web/base_config.html index af8db601..7e6bf09c 100644 --- a/src/khoj/interface/web/base_config.html +++ b/src/khoj/interface/web/base_config.html @@ -112,5 +112,11 @@ display: inline-block; font-size: 16px; } + + @media screen and (max-width: 600px) { + .section-cards { + grid-template-columns: 1fr; + } + }