Skip to content

Commit

Permalink
fix: modal z-index (#1343)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hickays authored Oct 13, 2023
1 parent a07a6d8 commit 9f99c3f
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,7 @@ export default function AccountPage() {
isShow
onClose={() => setEditNameModalVisible(false)}
className={s.modal}
wrapperClassName='z-20'
>
<div className='mb-6 text-lg font-medium text-gray-900'>{t('common.account.editName')}</div>
<div className={titleClassName}>{t('common.account.name')}</div>
Expand Down Expand Up @@ -193,6 +194,7 @@ export default function AccountPage() {
resetPasswordForm()
}}
className={s.modal}
wrapperClassName='z-20'
>
<div className='mb-6 text-lg font-medium text-gray-900'>{userProfile.is_password_set ? t('common.account.resetPassword') : t('common.account.setPassword')}</div>
{userProfile.is_password_set && (
Expand Down

0 comments on commit 9f99c3f

Please sign in to comment.