mirror of
https://github.com/RabbyHub/Rabby.git
synced 2026-01-14 22:37:56 -05:00
fix: imkey connection permission tip (#2699)
* fix: imkey connection permission tip * fix: add white bg for qrcodes
This commit is contained in:
@@ -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": {
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -37,6 +37,7 @@
|
||||
border-radius: 8px;
|
||||
padding: 10px;
|
||||
border: none !important;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.private-key {
|
||||
|
||||
@@ -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 {
|
||||
|
||||
@@ -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'),
|
||||
|
||||
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user