diff --git a/src/app/blockchains/page.tsx b/src/app/blockchains/page.tsx
index 14184b665..297aef659 100644
--- a/src/app/blockchains/page.tsx
+++ b/src/app/blockchains/page.tsx
@@ -30,7 +30,7 @@ const TCPage = () => {
headerProps={{
color: 'black',
position: 'relative',
- bgColor: 'white',
+ bgColor: '#F3F1E8',
}}
>
diff --git a/src/modules/iframe-tc/index.tsx b/src/modules/iframe-tc/index.tsx
index ea4bbcffb..b4564dcda 100644
--- a/src/modules/iframe-tc/index.tsx
+++ b/src/modules/iframe-tc/index.tsx
@@ -22,45 +22,40 @@ const IframeTC = (props: IProps) => {
elmHeader.click();
}
}
- setIframeLoading(false);
return () => window.removeEventListener('blur', blur);
}, [document]);
if (!document) {
return <>>;
}
- if (iframeLoading) {
- return (
-
-
-
- );
- }
return (
-
+
);
};
diff --git a/src/modules/iframe-tc/styles.module.scss b/src/modules/iframe-tc/styles.module.scss
index 4f16db12d..2711888cf 100644
--- a/src/modules/iframe-tc/styles.module.scss
+++ b/src/modules/iframe-tc/styles.module.scss
@@ -2,6 +2,7 @@
display: flex;
flex-direction: row;
overflow: hidden;
+ min-height: 100vh;
}
.iframeGame {