Skip to content

Commit 190de2a

Browse files
authored
Update Wallet.svelte
1 parent a1bd198 commit 190de2a

File tree

1 file changed

+1
-42
lines changed

1 file changed

+1
-42
lines changed

src/lib/Wallet.svelte

Lines changed: 1 addition & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@
110110
</div>
111111
</Modal>
112112

113-
<Modal bind:open={openModalPagar} autoclose>
113+
<Modal bind:open={openModalPagar}>
114114
<div class="text-center justify-center align-middle">
115115
<InputPagar
116116
stellarAccount={{
@@ -247,44 +247,3 @@
247247
{/if}
248248
</div>
249249
</div>
250-
<style>
251-
.loader {
252-
width: 48px;
253-
height: 48px;
254-
border: 3px solid #FFF;
255-
border-radius: 50%;
256-
display: inline-block;
257-
position: relative;
258-
box-sizing: border-box;
259-
animation: rotation 1s linear infinite;
260-
}
261-
262-
.loader::after {
263-
content: '';
264-
box-sizing: border-box;
265-
position: absolute;
266-
left: 50%;
267-
top: 50%;
268-
transform: translate(-50%, -50%);
269-
width: 40px;
270-
height: 40px;
271-
border-radius: 50%;
272-
border: 3px solid;
273-
border-color: #FF3D00 transparent;
274-
}
275-
276-
@keyframes rotation {
277-
0% {
278-
transform: rotate(0deg);
279-
}
280-
100% {
281-
transform: rotate(360deg);
282-
}
283-
}
284-
.payRealized{
285-
width: 100%;
286-
display: flex;
287-
justify-content: center;
288-
align-items: center;
289-
}
290-
</style>

0 commit comments

Comments
 (0)