Skip to content

Commit

Permalink
Merge pull request #3619 from Bnyro/master
Browse files Browse the repository at this point in the history
fix(register): input height doesn't match view password icon
  • Loading branch information
Bnyro authored May 16, 2024
2 parents 1440eea + 9762542 commit c31f9fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/RegisterPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<div class="flex justify-center">
<input
v-model="password"
class="input w-full"
class="input h-auto w-full"
:type="showPassword ? 'text' : 'password'"
autocomplete="password"
:placeholder="$t('login.password')"
Expand All @@ -34,7 +34,7 @@
<div class="flex justify-center">
<input
v-model="passwordConfirm"
class="input w-full"
class="input h-auto w-full"
:type="showConfirmPassword ? 'text' : 'password'"
autocomplete="password"
:placeholder="$t('login.password_confirm')"
Expand Down

0 comments on commit c31f9fb

Please sign in to comment.