fix: imkey connection permission tip (#2699)

* fix: imkey connection permission tip

* fix: add white bg for qrcodes
This commit is contained in:
vvvvvv1vvvvvv
2024-12-26 16:16:15 +08:00
committed by GitHub
parent 43ce14085b
commit fcc03c40d0
6 changed files with 9 additions and 7 deletions

View File

@@ -1527,6 +1527,10 @@
"running_app_close_error": "Failed to close the running app on your Ledger device."
}
},
"imkey": {
"title": "Connect imKey",
"imkeyPermissionTip": "Please click \"Allow\" below and authorize access to your imKey in the following pop-up window."
},
"keystone": {
"title": "Connect Keystone",
"allowRabbyPermissionsTitle": "Allow Rabby permissions to:",
@@ -1727,9 +1731,6 @@
"findTheAssociatedSafeAddress": "Find the associated safe address",
"import": "Import"
},
"imkey": {
"title": "Connect imKey"
},
"addFromCurrentSeedPhrase": "Add from Current Seed Phrase"
},
"unlock": {

View File

@@ -54,7 +54,7 @@ const AddressBackup = () => {
</div>
</div>
<div className="flex justify-center">
<div className="p-[12px] rounded-[16px] border-rabby-neutral-line border-[1px] bg-r-neutral-card-1">
<div className="p-[12px] rounded-[16px] border-rabby-neutral-line border-[1px] bg-white">
<QRCode value={data} size={240} />
</div>
</div>

View File

@@ -37,6 +37,7 @@
border-radius: 8px;
padding: 10px;
border: none !important;
background-color: #fff;
}
.private-key {

View File

@@ -51,7 +51,7 @@
justify-content: center;
align-items: center;
border-radius: 12px;
background: var(--r-neutral-card-1, #fff);
background: #fff;
border: 1px solid @color-border;
position: relative;
.refresh-container {

View File

@@ -41,7 +41,7 @@ const RequestPermission = () => {
imkey: {
title: t('page.newAddress.ledger.allowRabbyPermissionsTitle'),
desc: [t('page.newAddress.ledger.ledgerPermission1')],
tip: t('page.newAddress.ledger.ledgerPermissionTip'),
tip: t('page.newAddress.imkey.imkeyPermissionTip'),
},
keystone: {
title: t('page.newAddress.keystone.allowRabbyPermissionsTitle'),

View File

@@ -51,7 +51,7 @@
justify-content: center;
align-items: center;
border-radius: 12px;
background: var(--r-neutral-card-1, #fff);
background: #fff;
border: 1px solid @color-border;
position: relative;
.refresh-container {