Skip to content
This repository was archived by the owner on Jun 28, 2025. It is now read-only.

Commit 07d4677

Browse files
author
Manuel Proß
committed
feat(FE): add focus-, focus-visible and active-state style
1 parent 8c2fc75 commit 07d4677

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web/src/components/Inputs/TextInput.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export default function Input({ type, label, id, required, placeholder, value, n
3131
<div>
3232
{label && <label htmlFor={id}>{label}</label>}
3333
<input
34-
className="border-[1px] border-solid rounded-lg border-gray-1 py-2 px-4 text-white bg-gray-2"
34+
className="border-[3px] border-solid rounded-lg border-gray-1 py-2 px-5 text-white bg-gray-2 outline-none focus:border-secondary focus-visible:border-secondary active:border-secondary"
3535
type={type}
3636
value={value}
3737
name={name}

0 commit comments

Comments
 (0)