diff --git a/src/index.css b/src/index.css index 320eb03..a347eba 100644 --- a/src/index.css +++ b/src/index.css @@ -137,6 +137,10 @@ button { box-sizing: border-box; } +input:focus { + outline: unset; +} + /* font family */ @font-face { font-family: "Y Clover"; diff --git a/src/pages/name/name.page.tsx b/src/pages/name/name.page.tsx index c350516..591bbfb 100644 --- a/src/pages/name/name.page.tsx +++ b/src/pages/name/name.page.tsx @@ -2,9 +2,12 @@ import IconLeft from "@Assets/icons/icon-left.svg"; import { useNavigate } from "react-router-dom"; import SpeechBubble2 from "@Assets/images/speech-bubble2.png"; import CatFull from "@Assets/images/cat-full.png"; +import { useState } from "react"; interface NamePageProps {} export const NamePage = ({}: NamePageProps) => { + const [name, setName] = useState(""); + return (