Skip to content

Commit

Permalink
Fix home page spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
willpinha committed Dec 28, 2023
1 parent fb59b18 commit 71c6f28
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
let { tags, numExamples } = data;
</script>

<div class="flex flex-col items-center gap-4">
<div class="flex flex-col items-center gap-6">
<h1 class="text-center gap-2 text-4xl font-bold">
Click on a <span class="text-primary">#tag</span> to show
<i class="text-secondary">UI examples</i>
Expand All @@ -26,7 +26,7 @@
<input placeholder="Filter tags..." class="input input-bordered pl-12" bind:value={filter} />
</label>

<div class="flex flex-wrap max-w-md justify-center gap-2">
<div class="flex flex-wrap justify-center gap-2">
{#each tags as tag}
<a
href="/{tag}"
Expand Down

0 comments on commit 71c6f28

Please sign in to comment.