Skip to content

Commit

Permalink
remove minimal layout
Browse files Browse the repository at this point in the history
  • Loading branch information
willpinha committed Feb 8, 2024
1 parent 022f43d commit 2565ed5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
7 changes: 3 additions & 4 deletions src/layout/Content.astro
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<div class="flex flex-col md:flex-row md:justify-center bg-base-200 min-h-screen">
<div class="w-full max-w-screen-md bg-base-100 shadow-[0_3px_10px_rgb(0,0,0,0.2)]">
<div class="flex justify-center">
<div class="w-full max-w-screen-xl">
<slot />
</div>

</div>
</div>
4 changes: 2 additions & 2 deletions src/pages/[tag].astro
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ const { tag } = Astro.params;
---

<Page title={tag}>
<Navbar {tag} />

<Content>
<Navbar {tag} />

<TagExamples client:load {tag} />
</Content>
</Page>
4 changes: 2 additions & 2 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import Filter from "../components/Filter.svelte";
---

<Page title="Tags">
<Navbar />

<Content>
<Navbar />

<Filter client:load />
</Content>
</Page>

0 comments on commit 2565ed5

Please sign in to comment.