From eac669e7d96b0e713fbff627f43f7be4ce35d155 Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Wed, 2 Oct 2024 07:51:11 -0500 Subject: [PATCH] adjust gap --- web/src/views/search/SearchView.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/views/search/SearchView.tsx b/web/src/views/search/SearchView.tsx index c8b678958..866170655 100644 --- a/web/src/views/search/SearchView.tsx +++ b/web/src/views/search/SearchView.tsx @@ -69,7 +69,7 @@ export default function SearchView({ const [columnCount, setColumnCount] = usePersistence("exploreGridColumns", 4); const effectiveColumnCount = useMemo(() => columnCount ?? 4, [columnCount]); - const gridClassName = cn("grid w-full gap-2 px-1 sm:gap-4 md:mx-2", { + const gridClassName = cn("grid w-full gap-2 px-1 gap-2 lg:gap-4 md:mx-2", { "sm:grid-cols-2": effectiveColumnCount <= 2, "sm:grid-cols-3": effectiveColumnCount === 3, "sm:grid-cols-4": effectiveColumnCount === 4,