guessName+Fixes

This commit is contained in:
2025-10-21 15:08:28 +02:00
parent a1cf327837
commit 237378c208
8 changed files with 95 additions and 54 deletions
@@ -7,7 +7,7 @@ export default function InputBox({ type, placeholder, value, onChange, width })
return (
<input
type={type}
className={`${widthClass} py-3 px-4 border border-battleship-gray rounded-lg focus:border-mint focus:outline-none text-text placeholder-text-muted bg-background font-semibold text-lg`}
className={`${widthClass} py-3 px-4 border border-battleship-gray rounded-lg focus:border-mint-lighter focus:outline-none text-text placeholder-text-muted bg-background font-semibold text-lg`}
placeholder={placeholder}
value={value}
onChange={onChange}