diff options
author | Matt Strapp <matt@mattstrapp.net> | 2024-01-20 11:43:04 -0600 |
---|---|---|
committer | Matt Strapp <matt@mattstrapp.net> | 2024-01-20 11:43:04 -0600 |
commit | 18cfd93bba295a89e3e0f8a7be62411761c8f75f (patch) | |
tree | 80297fa33ce1f4170a8e647e3dfd7e7decd9f1d0 | |
parent | Migrate repos (diff) | |
download | zorascript-18cfd93bba295a89e3e0f8a7be62411761c8f75f.tar zorascript-18cfd93bba295a89e3e0f8a7be62411761c8f75f.tar.gz zorascript-18cfd93bba295a89e3e0f8a7be62411761c8f75f.tar.bz2 zorascript-18cfd93bba295a89e3e0f8a7be62411761c8f75f.tar.lz zorascript-18cfd93bba295a89e3e0f8a7be62411761c8f75f.tar.xz zorascript-18cfd93bba295a89e3e0f8a7be62411761c8f75f.tar.zst zorascript-18cfd93bba295a89e3e0f8a7be62411761c8f75f.zip |
Actually implement the toast
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | clients/www/src/routes/+layout.svelte | 4 |
2 files changed, 4 insertions, 2 deletions
@@ -1,5 +1,5 @@ # Zelda - Oracle Password Client for JavaScript/TypeScript -This repository is currently composed of two projects: \ +This repository is currently composed of two projects: 1. [zorascript](./packages/zorascript) - A JavaScript/TypeScript library for generating and validating passwords. 2. [zorascript-web](./clients/www) - A SvelteKit-based web client for generating and validating passwords.
\ No newline at end of file diff --git a/clients/www/src/routes/+layout.svelte b/clients/www/src/routes/+layout.svelte index 12996ec..6567ed5 100644 --- a/clients/www/src/routes/+layout.svelte +++ b/clients/www/src/routes/+layout.svelte @@ -1,7 +1,7 @@ <script lang="ts"> import { base } from '$app/paths'; import '../app.postcss'; - import { AppShell, AppBar, LightSwitch, initializeStores } from '@skeletonlabs/skeleton'; + import { AppShell, AppBar, LightSwitch, initializeStores, Toast } from '@skeletonlabs/skeleton'; import { pwaInfo } from 'virtual:pwa-info'; @@ -15,6 +15,8 @@ {@html webManifest} </svelte:head> +<Toast /> + <!-- App Shell --> <AppShell> <svelte:fragment slot="header"> |