fix mobile support on the new forms
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 1m4s

This commit is contained in:
Lee
2024-04-18 05:48:13 +01:00
parent 269653ed55
commit ea98b2bd5a
3 changed files with 6 additions and 5 deletions

View File

@ -40,7 +40,7 @@ export function LookupPlayer(): ReactElement {
return (
<form
className="flex flex-col gap-2 justify-center items-center mt-4"
className="flex flex-col gap-2 justify-center items-center mt-4 flex-wrap"
action={(form: FormData) => {
lookupPlayer(form.get("query") as string);
}}