aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app/components/InputText.tsx
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-03-10 00:39:16 +0900
committernsfisis <nsfisis@gmail.com>2025-03-10 01:02:12 +0900
commitd14fd1f6751cec8923a79c15851562640a861b8c (patch)
treea9f2c727148302562f1bdb48d15f07149c9a9bf3 /frontend/app/components/InputText.tsx
parentc807d6e47b11a91ec56225ed8358e3f2ef903e5c (diff)
downloadphperkaigi-2025-albatross-d14fd1f6751cec8923a79c15851562640a861b8c.tar.gz
phperkaigi-2025-albatross-d14fd1f6751cec8923a79c15851562640a861b8c.tar.zst
phperkaigi-2025-albatross-d14fd1f6751cec8923a79c15851562640a861b8c.zip
feat(frontend): upgrade packages
Diffstat (limited to 'frontend/app/components/InputText.tsx')
-rw-r--r--frontend/app/components/InputText.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/app/components/InputText.tsx b/frontend/app/components/InputText.tsx
index ed68206..6bcceb7 100644
--- a/frontend/app/components/InputText.tsx
+++ b/frontend/app/components/InputText.tsx
@@ -6,7 +6,7 @@ export default function InputText(props: InputProps) {
return (
<input
{...props}
- className="p-2 block w-full border border-sky-600 rounded-md transition duration-300 focus:ring focus:ring-sky-400 focus:outline-none"
+ className="p-2 block w-full border border-sky-600 rounded-md transition duration-300 focus:ring-3 focus:ring-sky-400 focus:outline-hidden"
/>
);
}