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,