feat: add missing image

This commit is contained in:
Arman
2022-12-12 16:30:56 +01:00
parent 5158af3ad0
commit 3ee703b570
4 changed files with 204 additions and 4 deletions
File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 22 KiB

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 17 KiB

@@ -246,7 +246,7 @@
{/if}
{/each}
</TableBody>
</Table>+
</Table>
{:else}
<Empty single target="deployment" on:click={() => (showCreate = true)}>
<div class="u-text-center">
@@ -5,11 +5,13 @@
import { createEventDispatcher, onMount } from 'svelte';
import { addNotification } from '$lib/stores/notifications';
import { page } from '$app/stores';
import Github from '$lib/images/github-illustration.svg';
import GithubLight from '$lib/images/github-illustration-light.svg';
import GithubDark from '$lib/images/github-illustration-dark.svg';
import { invalidate } from '$app/navigation';
import { Dependencies } from '$lib/constants';
import { func } from './store';
import { trackEvent } from '$lib/actions/analytics';
import { app } from '$lib/stores/app';
export let showCreate = false;
@@ -117,7 +119,7 @@
on:click={() => (mode = Mode.Github)}
selected={mode === Mode.Github}
event="deploy_github">
GitHub - Soon!
GitHub - (Soon!)
</Tab>
<Tab
on:click={() => (mode = Mode.Manual)}
@@ -156,7 +158,11 @@
{:else if mode === Mode.Github}
<div class="common-section grid-1-2">
<div class="grid-1-2-col-1 u-flex u-flex-vertical u-gap-16">
<img src={Github} alt="github" />
{#if $app.themeInUse === 'dark'}
<img src={GithubDark} alt="github" />
{:else}
<img src={GithubLight} alt="github" />
{/if}
</div>
<div class="grid-1-2-col-2 u-flex u-flex-vertical u-gap-24">
<h3 class="body-text-1">Coming Soon!</h3>