Format documents (prettier-plugin-tailwindcss)

This commit is contained in:
aronmal 2023-05-29 15:53:25 +02:00
parent 1b05d1120b
commit 4fa3b9ae64
Signed by: aronmal
GPG key ID: 816B7707426FC612
7 changed files with 10 additions and 10 deletions

View file

@ -77,7 +77,7 @@ function LobbyFrame({ openSettings }: { openSettings: () => void }) {
</div>
<div className="flex items-center justify-center border-t-2 border-slate-900">
<button
className="font-farro mx-32 my-4 rounded-xl border-b-4 border-red-400 bg-red-500 px-12 py-4 text-5xl font-medium duration-100 active:border-t-4 active:border-b-0"
className="font-farro mx-32 my-4 rounded-xl border-b-4 border-red-400 bg-red-500 px-12 py-4 text-5xl font-medium duration-100 active:border-b-0 active:border-t-4"
onClick={() => {
leave(async () => {
await router.push("/")
@ -87,7 +87,7 @@ function LobbyFrame({ openSettings }: { openSettings: () => void }) {
>
LEAVE
</button>
<button className="font-farro mx-32 my-4 rounded-xl border-b-4 border-orange-400 bg-warn px-12 py-4 text-5xl font-medium duration-100 active:border-t-4 active:border-b-0">
<button className="font-farro mx-32 my-4 rounded-xl border-b-4 border-orange-400 bg-warn px-12 py-4 text-5xl font-medium duration-100 active:border-b-0 active:border-t-4">
START
</button>
</div>