Skip to content

Commit

Permalink
fix: footer display
Browse files Browse the repository at this point in the history
  • Loading branch information
Sygnator committed Mar 30, 2024
1 parent 432e6e3 commit 5a47703
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/lib/components/Footer.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import { GithubSolid, DiscordSolid } from 'flowbite-svelte-icons';
</script>

<Footer footerType="socialmedia" class="fixed bottom-0 w-full">
<Footer footerType="socialmedia" class="fixed bottom-0 z-20 w-full">
<div class="sm:flex sm:items-center sm:justify-between">
<FooterCopyright href="https://sanakan.pl/" by="Sanakan" year={new Date().getFullYear()} />
<div class="mt-4 flex space-x-6 sm:mt-0 sm:justify-center rtl:space-x-reverse">
Expand Down
4 changes: 2 additions & 2 deletions src/lib/components/SideBar.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@
}
</script>

<Sidebar style="height: 94.3vh" asideClass="float-left">
<Sidebar asideClass="float-left">
<SidebarWrapper
style="height: 100%"
divClass="overflow-y-auto py-4 px-3 rounded dark:bg-gray-800 float-left"
divClass="overflow-y-auto py-4 px-3 rounded dark:bg-gray-800 float-left pb-20"
>
<SidebarGroup>
<SidebarDropdownWrapper label="Styl profilu">
Expand Down
2 changes: 1 addition & 1 deletion src/routes/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<NavBar />
<SideBar />
<main class="overflow-auto p-5" style="text-align: -webkit-center;">
<main class="overflow-auto p-5" style="text-align: -webkit-center; height: 100vh;">
<slot />
</main>
<Footer />

0 comments on commit 5a47703

Please sign in to comment.