Skip to content

Commit

Permalink
Limit size of QR codes to shorten page height.
Browse files Browse the repository at this point in the history
  • Loading branch information
robholland committed Nov 21, 2024
1 parent ea50b4b commit 8c80a5f
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions snakes/src/routes/[id]/lobby/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,11 @@

<section class="w-screen">
<div class="flex flex-col md:flex-row gap-16 justify-center px-8">
<div class="flex justify-center items-center flex-col">
<h1 class="retro">Lobby</h1>
</div>
<h1 class="retro">Lobby</h1>
</div>
<div class="flex flex-col md:flex-row gap-16 justify-center px-8">
{#each GAME_CONFIG.teamNames as team}
<div class="border-4 rounded-xl p-4 text-white flex-1"
<div class="border-4 rounded-xl p-4 text-white flex-1 max-w-[30vw]"
class:border-red-500={team === 'red'}
class:border-blue-500={team === 'blue'}
class:border-orange-500={team === 'orange'}
Expand Down

0 comments on commit 8c80a5f

Please sign in to comment.