mirror of
https://github.com/appwrite/console.git
synced 2026-06-06 19:27:48 +00:00
feat: add missing image
This commit is contained in:
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 |
+1
-1
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user