Skip to content

Commit 0bd5346

Browse files
committed
fix(ui): replace default browser focus ring with brand color on input
1 parent 7131b69 commit 0bd5346

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ export default function LandingPage() {
123123
<input
124124
type="text"
125125
placeholder="Enter GitHub Username"
126-
className="flex-1 rounded-xl border border-[rgba(255,255,255,0.08)] bg-[#111] px-5 py-3.5 text-sm text-white outline-none transition-all placeholder:text-[#A1A1AA] focus:border-[rgba(255,255,255,0.18)]"
126+
className="flex-1 rounded-xl border border-[rgba(255,255,255,0.08)] bg-[#111] px-5 py-3.5 text-sm text-white outline-none transition-all duration-200 placeholder:text-[#A1A1AA] focus:outline-none focus:ring-2 focus:ring-[#00ffaa] focus:border-transparent"
127127
value={username}
128128
onChange={(e) => setUsername(e.target.value)}
129129
/>

0 commit comments

Comments
 (0)