diff options
author | Sebastian <sebasjm@gmail.com> | 2024-06-21 16:04:23 -0300 |
---|---|---|
committer | Sebastian <sebasjm@gmail.com> | 2024-06-21 16:04:23 -0300 |
commit | 578031cc103efcbcd34be1bf7efd91facfa8b87c (patch) | |
tree | 31de50942b9ca681e7553d0cd7020ec69e5eb6b1 /packages/bank-ui/src/pages/QrCodeSection.tsx | |
parent | ac59505728336da59d2ba536e7ce0e2eafa57b02 (diff) |
addressing marc comments
Diffstat (limited to 'packages/bank-ui/src/pages/QrCodeSection.tsx')
-rw-r--r-- | packages/bank-ui/src/pages/QrCodeSection.tsx | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/packages/bank-ui/src/pages/QrCodeSection.tsx b/packages/bank-ui/src/pages/QrCodeSection.tsx index 2a21295c7..0d14f52d8 100644 --- a/packages/bank-ui/src/pages/QrCodeSection.tsx +++ b/packages/bank-ui/src/pages/QrCodeSection.tsx @@ -76,11 +76,12 @@ export function QrCodeSection({ return ( <Fragment> <LocalNotificationBanner notification={notification} /> + <div class="bg-white shadow-xl sm:rounded-lg"> <div class="px-4 py-5 sm:p-6"> <h3 class="text-base font-semibold leading-6 text-gray-900"> <i18n.Translate> - If you have a Taler wallet installed in this device + If you have a Taler wallet installed on this device </i18n.Translate> </h3> <div class="mt-4 mb-4 text-sm text-gray-500"> @@ -88,19 +89,19 @@ export function QrCodeSection({ <i18n.Translate> Your wallet will display the details of the transaction including the fees (if applicable). If you do not yet have a - wallet, please follow the instructions on - </i18n.Translate> + wallet, please follow the instructions + </i18n.Translate>{" "} <a - class="font-semibold text-gray-500 hover:text-gray-400" + class="font-semibold text-indigo-600 hover:text-indigo-900" name="wallet page" href="https://taler.net/en/wallet.html" > - <i18n.Translate>this page</i18n.Translate> + <i18n.Translate>on this page</i18n.Translate> </a> . </p> </div> - <div class="flex items-center justify-between gap-x-6 border-t border-gray-900/10 pt-2 mt-2 "> + <div class="flex items-center justify-between gap-x-6 pt-2 mt-2 "> <Button type="button" name="cancel" @@ -124,7 +125,7 @@ export function QrCodeSection({ <div class="px-4 py-5 sm:p-6"> <h3 class="text-base font-semibold leading-6 text-gray-900"> <i18n.Translate> - Or if you have the Taler wallet in another device + Or if you have the Taler wallet on another device </i18n.Translate> </h3> <div class="mt-4 max-w-xl text-sm text-gray-500"> |