Skip to content

Commit

Permalink
Merge pull request #78 from sparrowapp-dev/fix/fixed-bug-in-1618
Browse files Browse the repository at this point in the history
fix: fixed ui alignment bug in 1618 [#1618]
  • Loading branch information
Astitva877 authored Nov 12, 2024
2 parents c3e8190 + b5c4354 commit f31ba14
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/pages/Auth/login-page/LoginPage.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@
on:click={togglePasswordVisibility}
class="border-0 position-absolute eye-icon d-flex align-items-center"
>
{#if !isPasswordVisible}
{#if isPasswordVisible}
<img src={eyeShow} alt="eye-show" />
{:else}
<img src={eyeHide} alt="eye-hie" />
Expand Down
6 changes: 3 additions & 3 deletions src/pages/Auth/register-page/RegisterPage.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@
on:click={togglePasswordVisibility}
class=" border-0 position-absolute eye-icon d-flex align-items-center"
>
{#if !isPasswordVisible}
{#if isPasswordVisible}
<img src={eyeShow} alt="eye-show" />
{:else}
<img src={eyeHide} alt="eye-hie" />
Expand Down Expand Up @@ -365,10 +365,10 @@
</div>
</div>

<div class="form-group mt-3 d-flex align-item-center" data-tauri-drag-region>
<div class="form-group mt-3 d-flex align-items-center" data-tauri-drag-region>
<input
type="checkbox"
class="form-check-input"
class="form-check-input mt-0"
id="tnsCheckbox"
bind:checked={userData.tnsCheckbox}
on:input={async () => {
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Auth/reset-password/ResetPassword.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@
on:click={togglePasswordVisibility}
class=" border-0 position-absolute eye-icon d-flex align-items-center"
>
{#if !isPasswordVisible}
{#if isPasswordVisible}
<img src={eyeShow} alt="eye-show" />
{:else}
<img src={eyeHide} alt="eye-hie" />
Expand Down

0 comments on commit f31ba14

Please sign in to comment.