This commit is contained in:
YasinShaikh123
2024-11-05 16:12:33 +05:30
parent 365583630e
commit c5e7343cee
4 changed files with 10 additions and 7 deletions

View File

@@ -155,8 +155,9 @@ const toast = useToast()
return (
<Box
minH={"100vh"}
bg={colorMode === "light" ? "#fff" : "none"}
bg={colorMode === "light" ? "#f5f5f7" : "none"}
backgroundImage={{base:colorMode !== "light" ? `url(${bannerImageMobile})` : "none",md:colorMode !== "light" ? `url(${bannerImage})` : "none"}}
backgroundSize="contain"
backgroundRepeat="no-repeat">
@@ -288,12 +289,11 @@ const toast = useToast()
<AmountCard />
<Container maxW="6xl" p={{base: "2rem 1rem",md:"4rem 1rem"}}>
<Box
boxShadow={
colorMode === "light"
? "rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;"
: "none"
}
boxShadow={
colorMode === "light"
? "rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;"
: "none"
}
p={{base :1,md : 5}}
rounded={10}
bg={colorMode === "light" ? "#DEDBEB47" : "#232127"}

View File

@@ -122,6 +122,7 @@ const MainNet = () => {
<FullScreenLoaader />
) : (
<Box
bg={colorMode === "light" ? "#f5f5f7" : "none"}
minH={"100vh"}
{...OPACITY_ON_LOAD}
p={"6rem 0 4rem 0"}

View File

@@ -114,6 +114,7 @@ const SubnetId = () => {
}));
return (
<Box
bg={colorMode === "light" ? "#f5f5f7" : "none"}
p={"6rem 0 4rem 0"}
backgroundImage={colorMode !== "light" ? `url(${bannerImage})` : "none"}
position={"relative"}

View File

@@ -130,6 +130,7 @@ const TransactionDetails = () => {
return (
<>
<Box
bg={colorMode === "light" ? "#f5f5f7" : "none"}
backgroundImage={colorMode !== "light" ? `url(${bannerImage})` : "none"}
backgroundSize="cover"
backgroundRepeat="no-repeat"