diff --git a/src/app.css b/src/app.css
index e7ca08d..8a5ff9e 100644
--- a/src/app.css
+++ b/src/app.css
@@ -120,6 +120,14 @@ strong {
@apply rounded-md p-1 text-lg font-medium hover:bg-white/3;
}
+.input-basic {
+ @apply rounded-md bg-zinc-900 p-2;
+}
+
+.link {
+ @apply font-bold underline;
+}
+
.tippy-box[data-theme~="dph"] {
background-color: var(--color-zinc-700);
font-family: "Lexend", sans-serif;
diff --git a/src/lib/components/TopUI.svelte b/src/lib/components/TopUI.svelte
index 8ff1b7d..e8f8083 100644
--- a/src/lib/components/TopUI.svelte
+++ b/src/lib/components/TopUI.svelte
@@ -8,7 +8,7 @@
import IconUpload from "~icons/tabler/upload";
import IconSettings from "~icons/tabler/settings";
- const { editor }: { editor: Editor | undefined } = $props();
+ let { editor, welcomeScreenVisible = $bindable() }: { editor: Editor | undefined, welcomeScreenVisible: boolean } = $props();
let snapshots = $state