Skip to content

Commit

Permalink
footer fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mabu2807 committed Jul 2, 2024
1 parent e4ee5e8 commit 0ac5bc0
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 11 deletions.
4 changes: 1 addition & 3 deletions src/routes/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,5 @@
<AppShell>
<svelte:fragment slot="header"><Navbar /></svelte:fragment>
<slot />
<svelte:fragment slot="footer"
><div class="fixed left-0 bottom-0 right-0"><Footer /></div></svelte:fragment
>
<svelte:fragment slot="footer"><div class="w-screen"><Footer /></div></svelte:fragment>
</AppShell>
2 changes: 1 addition & 1 deletion src/routes/imprint/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
});
</script>

<main class="flex flex-col justify-center items-center mb-[70px] mt-[90px]">
<main class="flex flex-col justify-center items-center mt-[90px]">
<div class="card bg-red p-2 w-[80vw] mb-5">
<h1 class="font-bold text-2xl">{$t('imprint.frontend.header')}</h1>
<div class="mt-2">
Expand Down
2 changes: 1 addition & 1 deletion src/routes/profile/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@

<Toast zIndex="1100" />
{#if profileData.statusCode == 200}
<main class=" flex flex-col items-center justify-start mb-[70px] mt-[90px]">
<main class=" flex flex-col items-center justify-start mt-[90px]">
<div
class=" w-full min-h-[35vh] flex flex-col md:flex-row justify-center items-center border-b-4 border-indigo-800"
>
Expand Down
2 changes: 1 addition & 1 deletion src/routes/profile/followers/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
});
</script>

<main class="flex flex-col items-center min-h-[70vh] mb-[70px] mt-[90px]">
<main class="flex flex-col items-center min-h-[70vh] mt-[90px]">
<h2 class="h2 mb-10">{$t('profile.followers')}</h2>
<div class="mb-20">
{#if followerData.records.length == 0}
Expand Down
2 changes: 1 addition & 1 deletion src/routes/profile/following/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
});
</script>

<main class="flex flex-col items-center min-h-[70vh] mb-[70px] mt-[90px]">
<main class="flex flex-col items-center min-h-[70vh] mt-[90px]">
<h2 class="h2 mb-10">{$t('profile.following')}</h2>
<div class="mb-20">
{#if followingData.records.length == 0}
Expand Down
2 changes: 1 addition & 1 deletion src/routes/register/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@
</script>

<Toast />
<main class=" flex flex-col justify-center items-center h-[90vh] mb-[70px] mt-[90px]">
<main class=" flex flex-col justify-center items-center h-[90vh] mt-[90px]">
<div class="card lg:w-[40vw] md:w-[80vw] w-[95vw] h-[80vh] p-10">
<h1 class="h1 mb-14">{$t('register.header')}</h1>

Expand Down
2 changes: 1 addition & 1 deletion src/routes/search/posts/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
</script>

<main>
<div class="mb-[122px] w-3/5 min-h-screen mx-auto mt-[122px]">
<div class="mb-8 w-3/5 min-h-screen mx-auto mt-[122px]">
<div class="mb-8 flex justify-center items-center gap-4">
<a href="/search/users">
<Icon class="w-10 h-10" icon="mdi:account-search-outline" style="font-size: 32px" />
Expand Down
2 changes: 1 addition & 1 deletion src/routes/search/users/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
</script>

<Toast zIndex="1100" />
<div class=" w-3/5 min-h-screen mx-auto mb-[70px] mt-[122px]">
<div class=" w-3/5 min-h-screen mx-auto mt-[122px]">
<div class="mb-8 flex justify-center items-center gap-4">
<a href="/search/users" data-sveltekit-preload-data="hover">
<Icon
Expand Down
2 changes: 1 addition & 1 deletion src/routes/verify/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
$: formCorrectCode = verifyInput.length == 6;
</script>

<main class="flex justify-center items-center w-screen h-screen mb-[70px] mt-[90px]">
<main class="flex justify-center items-center w-screen h-screen mt-[90px]">
<div class="card lg:w-[40vw] md:w-[80vw] w-[95vw] h-[60vh] p-5">
<h2 class="h2">{$t('verify.header')}</h2>

Expand Down

0 comments on commit 0ac5bc0

Please sign in to comment.