add more stats and add a tooltip to them
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 58s

This commit is contained in:
Lee
2024-04-18 02:31:52 +01:00
parent 3ebc3c0612
commit b978bc14df
5 changed files with 39 additions and 15 deletions

View File

@ -37,14 +37,14 @@ export function LookupPlayer(): JSX.Element {
};
return (
<form className="flex gap-2 justify-center mt-2" action="" onSubmit={(event) => event.preventDefault()}>
<form className="flex gap-2 justify-center mt-2" action="" onSubmit={event => event.preventDefault()}>
<Input
className="w-fit"
type="search"
name="query"
placeholder="Name / UUID"
value={id}
onChange={(event) => {
onChange={event => {
setId(event.target.value);
}}
maxLength={36}