|
2 | 2 | <TransitionRoot appear :show="isOpen" as="template">
|
3 | 3 | <Dialog as="div" class="relative z-10" @close="closeModal">
|
4 | 4 | <TransitionChild
|
5 |
| - as="template" enter="duration-300 ease-out" enter-from="opacity-0" enter-to="opacity-100" |
6 |
| - leave="duration-200 ease-in" leave-from="opacity-100" leave-to="opacity-0"> |
| 5 | + as="template" |
| 6 | + enter="duration-300 ease-out" |
| 7 | + enter-from="opacity-0" |
| 8 | + enter-to="opacity-100" |
| 9 | + leave="duration-200 ease-in" |
| 10 | + leave-from="opacity-100" |
| 11 | + leave-to="opacity-0" |
| 12 | + > |
7 | 13 | <div class="bg-opacity/100 fixed inset-0 bg-black/50" />
|
8 | 14 | </TransitionChild>
|
9 | 15 |
|
10 | 16 | <div class="fixed inset-0 overflow-y-auto">
|
11 |
| - <div class="flex min-h-full items-center justify-center p-4 text-center"> |
| 17 | + <div |
| 18 | + class="flex min-h-full items-center justify-center p-4 text-center" |
| 19 | + > |
12 | 20 | <TransitionChild
|
13 |
| - as="template" enter="duration-300 ease-out" enter-from="opacity-0 scale-95" |
14 |
| - enter-to="opacity-100 scale-100" leave="duration-200 ease-in" leave-from="opacity-100 scale-100" |
15 |
| - leave-to="opacity-0 scale-95"> |
| 21 | + as="template" |
| 22 | + enter="duration-300 ease-out" |
| 23 | + enter-from="opacity-0 scale-95" |
| 24 | + enter-to="opacity-100 scale-100" |
| 25 | + leave="duration-200 ease-in" |
| 26 | + leave-from="opacity-100 scale-100" |
| 27 | + leave-to="opacity-0 scale-95" |
| 28 | + > |
16 | 29 | <DialogPanel
|
17 |
| - class="w-full max-w-md overflow-hidden rounded-2xl bg-gray-800 p-6 text-left align-middle shadow-xl transition-all"> |
18 |
| - <DialogTitle as="h3" class="text-lg font-medium leading-6 text-gray-200"> |
| 30 | + class="w-full max-w-md overflow-hidden rounded-2xl bg-gray-800 p-6 text-left align-middle shadow-xl transition-all" |
| 31 | + > |
| 32 | + <DialogTitle |
| 33 | + as="h3" |
| 34 | + class="text-lg font-medium leading-6 text-gray-200" |
| 35 | + > |
19 | 36 | Account Migration
|
20 | 37 | </DialogTitle>
|
21 | 38 | <div class="mt-2 space-y-1 text-sm text-gray-300">
|
22 |
| - <p> |
23 |
| - Your account is empty? |
24 |
| - </p> |
| 39 | + <p>Your account is empty?</p> |
25 | 40 | <p>
|
26 | 41 | Login to your old account and send funds to your new account.
|
27 | 42 | </p>
|
28 |
| - <p > |
29 |
| - If you need some help, please reach out to us on <a class="cursor-pointer font-semibold hover:text-yellow-600" href="https://t.me/lnmarkets">Telegram</a>! |
| 43 | + <p> |
| 44 | + If you need some help, please reach out to us on |
| 45 | + <a |
| 46 | + class="cursor-pointer font-semibold hover:text-yellow-600" |
| 47 | + href="https://t.me/lnmarkets" |
| 48 | + >Telegram</a |
| 49 | + >! |
30 | 50 | </p>
|
31 | 51 | </div>
|
32 | 52 |
|
33 | 53 | <div class="mt-4 flex w-full justify-evenly">
|
34 |
| - <UmbrelButton :icon="ArrowRightOnRectangleIcon" :click="deprecated"> |
35 |
| - Login old account |
| 54 | + <UmbrelButton |
| 55 | + :icon="ArrowRightOnRectangleIcon" |
| 56 | + :click="deprecated" |
| 57 | + > |
| 58 | + Login old account |
36 | 59 | </UmbrelButton>
|
37 | 60 |
|
38 |
| - <UmbrelButton :icon="ArrowRightOnRectangleIcon" :click="correct"> |
39 |
| - Login new account |
| 61 | + <UmbrelButton |
| 62 | + :icon="ArrowRightOnRectangleIcon" |
| 63 | + :click="correct" |
| 64 | + > |
| 65 | + Login new account |
40 | 66 | </UmbrelButton>
|
41 | 67 | </div>
|
42 | 68 | </DialogPanel>
|
|
0 commit comments