chore: Update marketplace grid layout for larger screens

This commit is contained in:
Mauro Balades
2024-08-17 23:05:33 +02:00
parent eca094343e
commit 3f20072951
2 changed files with 2 additions and 2 deletions

View File

@@ -18,7 +18,7 @@ export default function MarketplacePage() {
<h1 className="text-4xl lg:text-7xl font-bold">Themes Marketplace</h1>
<ThemesSearch input={searchInput} setInput={setSearchInput} />
</div>
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8 mt-10 w-full">
<div className="grid grid-cols-1 md:grid-cols-2 xl:grid-cols-3 gap-8 mt-10 w-full">
{getThemesFromSearch(themes, searchInput).map((theme) => (
<ThemeCard key={theme.name} theme={theme} />
))}