Skip to content

Commit

Permalink
Fixed possible bug with overwritting css properties in login screen
Browse files Browse the repository at this point in the history
  • Loading branch information
neron-png committed Feb 25, 2024
1 parent 9ce3d8e commit f2b2bd4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/lib/components/loginService/login.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@
{/if}
{#if isVisible}
<div class="loading-panel">
<ion-spinner></ion-spinner>
<p>Loading...</p>
<ion-spinner class="loginSpinner"></ion-spinner>
<p class="loginP">Loading...</p>
</div>
{/if}

Expand Down Expand Up @@ -146,12 +146,12 @@
z-index: 1000;
}
ion-spinner {
ion-spinner.loginSpinner {
--color: white;
margin-right: 10px; /* Adjust the margin as needed */
}
p {
p.loginP {
color: white;
margin: 0; /* Remove default margin */
}
Expand Down

0 comments on commit f2b2bd4

Please sign in to comment.