Skip to content
This repository has been archived by the owner on Sep 12, 2024. It is now read-only.

Commit

Permalink
fix: update footer (#68)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cahllagerfeld authored Feb 12, 2022
1 parent f3ba61e commit 178d92e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/lib/components/footer.svelte
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<footer class="fixed left-0 bottom-0 w-full bg-gray-50">
<footer class="mt-auto w-full bg-gray-50">
<ul class="flex list-none justify-center space-x-4">
<li>
<a
Expand Down
12 changes: 7 additions & 5 deletions src/routes/__layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@
import Footer from '$lib/components/footer.svelte';
</script>

<div class="float-none mx-auto my-0 flex min-h-screen w-[90%] max-w-[1400px] flex-col">
<Nav />
<div class="mb-8 text-center">
Eddiehub Issue-Crawler for finding <b>good-first-issues</b>
<div class="flex min-h-screen flex-col">
<div class="float-none mx-auto my-0 w-[90%] max-w-[1400px]">
<Nav />
<div class="mb-8 text-center">
Eddiehub Issue-Crawler for finding <b>good-first-issues</b>
</div>
<slot />
</div>
<slot />
<Footer />
</div>
2 changes: 1 addition & 1 deletion src/routes/index.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<div class="mb-4 flex justify-center">
<Search bind:searchTerm={searchString} on:keyup={() => performSearch()} />
</div>
<div class="space-y-4">
<div class="mb-4 space-y-4">
{#each searchResult as node}
<IssueCard issue={node.node} />
{/each}
Expand Down

0 comments on commit 178d92e

Please sign in to comment.