Skip to content

Commit 7f4d2ff

Browse files
committed
Fix
1 parent 4a4b82a commit 7f4d2ff

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/routes/admin/+page.svelte

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import type { SessionInfo } from "$lib/types";
44
import { onMount } from "svelte";
55
import Error from "$lib/components/Error.svelte";
6-
import { refreshAccessToken, getSessionInfo, isAuthenticated, LinkButton, Loader, FlexWrapper, Icon } from "@davidnet/svelte-ui";
6+
import { refreshAccessToken, getSessionInfo, isAuthenticated, LinkButton, Loader, FlexWrapper, Icon, Space } from "@davidnet/svelte-ui";
77
88
let correlationID = crypto.randomUUID();
99
let error = false;
@@ -42,9 +42,10 @@
4242
{#if error}
4343
<Error pageName="Admin list" errorMSG="Unknown" />
4444
{:else}
45-
<FlexWrapper width="100%" height="100%">
45+
<FlexWrapper width="100%" height="100%" gap="var(--token-space-1);">
4646
{#if Authenticated}
4747
<Icon icon="shield" size="10rem" />
48+
<Space height="var(--token-space-1);" />
4849
<LinkButton href="https://account.davidnet.net/admin/">Account Admin</LinkButton>
4950
<LinkButton href="https://kanban.davidnet.net/admin/">Kanban Admin</LinkButton>
5051
{:else}

0 commit comments

Comments
 (0)