Skip to content

Commit 4474759

Browse files
committed
style: update label and input in FormContact
1 parent 971297a commit 4474759

File tree

1 file changed

+4
-1
lines changed
  • web/src/layout/Header/navbar/Menu/Settings/Notifications/FormContactDetails

1 file changed

+4
-1
lines changed

web/src/layout/Header/navbar/Menu/Settings/Notifications/FormContactDetails/FormContact.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,12 @@ const FormContact: React.FC<IForm> = ({
3737

3838
return (
3939
<>
40-
<label className="flex justify-between mb-[10px]">{contactLabel}</label>
40+
<label htmlFor="contact-input" className="flex mb-[10px]">
41+
{contactLabel}
42+
</label>
4143
<TextField
4244
className="flex flex-col items-center w-full [&_input]:text-sm"
45+
id="contact-input"
4346
variant={fieldVariant}
4447
value={contactInput}
4548
onChange={(value) => setContactInput(value)}

0 commit comments

Comments
 (0)