mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 04:37:11 +01:00
Position error tooltip below form field on narrow screen sizes
This commit is contained in:
parent
63f24e55f1
commit
57d459f78f
6 changed files with 58 additions and 22 deletions
|
|
@ -58,15 +58,19 @@ export default function AccountEditForm({ values, onSave, onClose }) {
|
|||
<label htmlFor="username">
|
||||
<FormattedMessage id="label.username" defaultMessage="Username" />
|
||||
</label>
|
||||
<Field name="username" type="text" />
|
||||
<FormError name="username" />
|
||||
<div>
|
||||
<Field name="username" type="text" />
|
||||
<FormError name="username" />
|
||||
</div>
|
||||
</FormRow>
|
||||
<FormRow>
|
||||
<label htmlFor="password">
|
||||
<FormattedMessage id="label.password" defaultMessage="Password" />
|
||||
</label>
|
||||
<Field name="password" type="password" />
|
||||
<FormError name="password" />
|
||||
<div>
|
||||
<Field name="password" type="password" />
|
||||
<FormError name="password" />
|
||||
</div>
|
||||
</FormRow>
|
||||
<FormButtons>
|
||||
<Button type="submit" variant="action">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue