Skip to content

Commit

Permalink
feat: style queue page
Browse files Browse the repository at this point in the history
  • Loading branch information
azaleacolburn committed Nov 19, 2024
1 parent f832541 commit d12a58f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/routes/admin/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
</div>
<div class="grid grid-cols-2 grid-rows-3 row-span-3 gap-4 text-black grid-flow-col">
{#each teams as _, i}
<input bind:value={teams[i]} type="text" class="rounded" />
<input bind:value={teams[i]} type="text" class="rounded p-1" />
{/each}
</div>
</div>
Expand Down
8 changes: 6 additions & 2 deletions src/routes/queue/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@
};
</script>

<h1>In Queue</h1>
<div
class="h-full w-full grid grid-cols-1 grid-rows-2 align-middle text-4xl text-white place-items-center gap-4"
>
<h1 class="p-2">In Queue</h1>

<button onclick={leave}>Leave Queue</button>
<button class="rounded border p-4" onclick={leave}>Leave Queue</button>
</div>

0 comments on commit d12a58f

Please sign in to comment.