|
@@ -1268,13 +1268,13 @@ export const showNFTCard = () => {
|
|
if (where) {
|
|
if (where) {
|
|
let iframe = document.createElement('iframe');
|
|
let iframe = document.createElement('iframe');
|
|
iframe.src = chrome.runtime.getURL(`/iframe/nft-card.html`)
|
|
iframe.src = chrome.runtime.getURL(`/iframe/nft-card.html`)
|
|
- iframe.style.cssText = 'border:medium none; width:100%; height:297px;';
|
|
|
|
|
|
+ iframe.style.cssText = 'border:medium none; width:100%; height:290px;';
|
|
let nftElement = document.createElement('div');
|
|
let nftElement = document.createElement('div');
|
|
nftElement.id = 'de-nft-node';
|
|
nftElement.id = 'de-nft-node';
|
|
nftElement.innerHTML = `
|
|
nftElement.innerHTML = `
|
|
${iframe.outerHTML}
|
|
${iframe.outerHTML}
|
|
<style>
|
|
<style>
|
|
- #de-nft-node {height:297px; margin-bottom:17px; display:none;}
|
|
|
|
|
|
+ #de-nft-node {height:290px; margin-bottom:17px; display:none;}
|
|
</style>
|
|
</style>
|
|
`;
|
|
`;
|
|
|
|
|