Skip to content

Commit

Permalink
Update Wallet.svelte
Browse files Browse the repository at this point in the history
  • Loading branch information
julihidalgo authored Dec 13, 2024
1 parent a1bd198 commit 190de2a
Showing 1 changed file with 1 addition and 42 deletions.
43 changes: 1 addition & 42 deletions src/lib/Wallet.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@
</div>
</Modal>

<Modal bind:open={openModalPagar} autoclose>
<Modal bind:open={openModalPagar}>
<div class="text-center justify-center align-middle">
<InputPagar
stellarAccount={{
Expand Down Expand Up @@ -247,44 +247,3 @@
{/if}
</div>
</div>
<style>
.loader {
width: 48px;
height: 48px;
border: 3px solid #FFF;
border-radius: 50%;
display: inline-block;
position: relative;
box-sizing: border-box;
animation: rotation 1s linear infinite;
}
.loader::after {
content: '';
box-sizing: border-box;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
width: 40px;
height: 40px;
border-radius: 50%;
border: 3px solid;
border-color: #FF3D00 transparent;
}
@keyframes rotation {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.payRealized{
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
</style>

0 comments on commit 190de2a

Please sign in to comment.