Updated the design of the WriteBlanks exercise

This commit is contained in:
Tiago Ribeiro
2023-06-20 22:43:28 +01:00
parent 7beb1c84e7
commit 294f00952e
2 changed files with 47 additions and 31 deletions

View File

@@ -35,7 +35,7 @@ function Blank({
return (
<input
className={clsx("input border rounded-xl px-2 py-1 bg-white text-blue-400 border-blue-400 my-2")}
className="py-2 px-3 rounded-2xl w-48 bg-white focus:outline-none my-2"
placeholder={id}
onChange={(e) => setUserInput(e.target.value)}
onBlur={() => setUserSolution(userInput)}