Skip to content

Commit 7c4070f

Browse files
committed
Remove grid when under sm
1 parent 66ec6e5 commit 7c4070f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/Items.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
export let items: Item[];
66
</script>
77

8-
<div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 gap-4 sm:gap-8 md:gap-6">
8+
<div class="sm:grid sm:grid-cols-2 md:grid-cols-3 sm:gap-6 space-y-4 items-baseline">
99
{#each items as item}
1010
<ItemComponent {item} />
1111
{/each}

0 commit comments

Comments
 (0)