cleanup stuff
This commit is contained in:
@ -1,4 +1,7 @@
|
||||
.footer-ios {
|
||||
margin-bottom: var(--safe-area-bottom);
|
||||
padding-bottom: var(--safe-area-bottom);
|
||||
@supports (-webkit-touch-callout: none) {
|
||||
/* CSS specific to iOS devices */
|
||||
.footer-ios {
|
||||
margin-bottom: var(--safe-area-bottom);
|
||||
padding-bottom: var(--safe-area-bottom);
|
||||
}
|
||||
}
|
||||
|
@ -47,6 +47,7 @@ const UpdatePassword: FunctionComponent = () => {
|
||||
tabIndex={3}
|
||||
error={actionData?.errors?.currentPassword}
|
||||
disabled={isSubmitting}
|
||||
autoComplete="current-password"
|
||||
/>
|
||||
|
||||
<LabeledTextField
|
||||
@ -56,6 +57,7 @@ const UpdatePassword: FunctionComponent = () => {
|
||||
tabIndex={4}
|
||||
error={actionData?.errors?.newPassword}
|
||||
disabled={isSubmitting}
|
||||
autoComplete="new-password"
|
||||
/>
|
||||
|
||||
<input type="hidden" name="_action" value="changePassword" />
|
||||
|
Reference in New Issue
Block a user