Added Editor Game and Wall Display

This commit is contained in:
2026-01-02 02:59:40 +01:00
parent dc2766f0ef
commit 7be5921ef6
9 changed files with 372 additions and 38 deletions

18
src/lib/Textfield.svelte Normal file
View File

@@ -0,0 +1,18 @@
<script lang="ts">
interface Props {
value: string;
}
let { value = $bindable() }: Props = $props();
</script>
<input type="text" name="textfield" class="borders mt-2 mb-2 w-full" bind:value />
<style>
.borders {
border: 1px solid black;
border-radius: 5px;
display: flex;
padding: 2px;
}
</style>