From 63896bc96d0f17594cd860ca501e71a4a411709b Mon Sep 17 00:00:00 2001 From: Sadanand Pai Date: Sat, 12 Oct 2024 09:07:27 +0530 Subject: [PATCH] Challenge responsive UI fix --- .../challenges/challenge-grid/challenge-grid.module.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/host/src/components/modules/challenges/challenge-grid/challenge-grid.module.scss b/apps/host/src/components/modules/challenges/challenge-grid/challenge-grid.module.scss index 957168e26..6e59a968d 100644 --- a/apps/host/src/components/modules/challenges/challenge-grid/challenge-grid.module.scss +++ b/apps/host/src/components/modules/challenges/challenge-grid/challenge-grid.module.scss @@ -82,7 +82,7 @@ .challengeGrid { display: grid; - grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); + grid-template-columns: repeat(auto-fill, minmax(min(350px, 100%), 1fr)); grid-gap: 2.5rem; margin: 2rem 0; }