mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 12:47:13 +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
|
|
@ -63,15 +63,19 @@ export default function WebsiteEditForm({ values, onSave, onClose }) {
|
|||
<label htmlFor="name">
|
||||
<FormattedMessage id="label.name" defaultMessage="Name" />
|
||||
</label>
|
||||
<Field name="name" type="text" />
|
||||
<FormError name="name" />
|
||||
<div>
|
||||
<Field name="name" type="text" />
|
||||
<FormError name="name" />
|
||||
</div>
|
||||
</FormRow>
|
||||
<FormRow>
|
||||
<label htmlFor="domain">
|
||||
<FormattedMessage id="label.domain" defaultMessage="Domain" />
|
||||
</label>
|
||||
<Field name="domain" type="text" />
|
||||
<FormError name="domain" />
|
||||
<div>
|
||||
<Field name="domain" type="text" />
|
||||
<FormError name="domain" />
|
||||
</div>
|
||||
</FormRow>
|
||||
<FormRow>
|
||||
<label></label>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue