Skip to content

Commit

Permalink
Fix z-index for header and footer (#290)
Browse files Browse the repository at this point in the history
  • Loading branch information
sneakycrow authored Jul 18, 2024
1 parent ebc60e4 commit b518c93
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib/components/Footer.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
</script>

<footer
class={`py-4 flex flex-col space-y-10 lg:flex-row justify-between items-center ${$$restProps.class}`}
class={`py-4 flex flex-col space-y-10 lg:flex-row justify-between items-center z-10 ${$$restProps.class}`}
>
<p class="flex flex-col">
<span class="text-sm">© {new Date().getFullYear()} Sneaky Crow, LLC</span>
Expand Down
2 changes: 1 addition & 1 deletion src/lib/components/Header.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</script>

<header
class={`w-full grid grid-cols-header gap-4 items-center lg:items-start lg:max-h-[300px] ${$$restProps.class}`}
class={`w-full grid grid-cols-header gap-4 items-center lg:items-start lg:max-h-[300px] z-20 ${$$restProps.class}`}
>
<Logo class="w-14 lg:w-[100px] col-start-1 col-span-1" />
<section
Expand Down

0 comments on commit b518c93

Please sign in to comment.