Skip to content

Commit fbe4720

Browse files
author
Llorenç Muntaner
authored
Support link from dashboard not working (dfinity#3204)
1 parent 348b2ee commit fbe4720

2 files changed

Lines changed: 3 additions & 8 deletions

File tree

src/frontend/src/lib/components/layout/MainContent.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<header class="col-start-2 col-end-5 row-start-1 row-end-2 pt-2 pr-0 md:pr-6">
2121
{@render header?.()}
2222
</header>
23-
<footer class="col-start-1 col-end-5 row-start-5 row-end-6 px-4 py-4 md:px-6">
23+
<footer class="col-start-1 col-end-5 row-start-5 row-end-6">
2424
{@render footer?.()}
2525
</footer>
2626
</div>

src/frontend/src/routes/(new-styling)/manage/(authenticated)/+layout.svelte

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
import { handleError } from "$lib/components/utils/error";
1919
import Dialog from "$lib/components/ui/Dialog.svelte";
2020
import AuthWizard from "$lib/components/wizards/auth/AuthWizard.svelte";
21+
import Footer from "$lib/components/layout/Footer.svelte";
2122
2223
const { children } = $props();
2324
@@ -257,12 +258,6 @@
257258
</div>
258259
{/snippet}
259260
{#snippet footer()}
260-
<div class="flex">
261-
<p class="text-text-primary">© Internet Identity</p>
262-
<div class="flex-1"></div>
263-
<ButtonOrAnchor class="text-text-primary hover:underline" href="/support"
264-
>Support
265-
</ButtonOrAnchor>
266-
</div>
261+
<Footer />
267262
{/snippet}
268263
</MainContent>

0 commit comments

Comments
 (0)