@@ -36,6 +36,7 @@ import StablecoinsTable from "@/components/StablecoinsTable"
36
36
import Tooltip from "@/components/Tooltip"
37
37
import Translation from "@/components/Translation"
38
38
39
+ import { cn } from "@/lib/utils/cn"
39
40
import { existsNamespace } from "@/lib/utils/existsNamespace"
40
41
import { getLastDeployDate } from "@/lib/utils/getLastDeployDate"
41
42
import { runOnlyOnce } from "@/lib/utils/runOnlyOnce"
@@ -474,13 +475,12 @@ const StablecoinsPage = ({ markets, marketsHasError }) => {
474
475
</ GhostCard >
475
476
</ Flex >
476
477
</ Content >
477
- < Box
478
- w = "full"
479
- py = { 16 }
480
- mt = { 8 }
481
- mb = { 8 }
482
- background = "cardGradient"
483
- boxShadow = "inset 0px 1px 0px var(--eth-colors-tableItemBoxShadow)"
478
+ < div
479
+ className = { cn (
480
+ "my-8 w-full py-16 shadow-inner" ,
481
+ "bg-gradient-to-r from-accent-a/10 to-accent-c/10" ,
482
+ "dark:bg-gradient-to-tr dark:from-primary/20 dark:from-20% dark:via-accent-a/20 dark:via-60% dark:to-accent-c/20 dark:to-95%"
483
+ ) }
484
484
>
485
485
< Box mb = { - 8 } py = { 4 } px = { 8 } w = "full" >
486
486
< H2 mt = { 0 } > { t ( "page-stablecoins-find-stablecoin" ) } </ H2 >
@@ -635,7 +635,7 @@ const StablecoinsPage = ({ markets, marketsHasError }) => {
635
635
hasError = { marketsHasError }
636
636
/>
637
637
</ Box >
638
- </ Box >
638
+ </ div >
639
639
< Content id = "explore" >
640
640
< H2 > { t ( "page-stablecoins-get-stablecoins" ) } </ H2 >
641
641
</ Content >
@@ -660,7 +660,7 @@ const StablecoinsPage = ({ markets, marketsHasError }) => {
660
660
imageWidth = { 600 }
661
661
alt = { t ( "page-stablecoins-stablecoins-dapp-callout-image-alt" ) }
662
662
>
663
- < Flex flexFlow = " wrap" gap = "1em ">
663
+ < div className = "flex flex- wrap gap-4 ">
664
664
< ButtonLink href = "/dapps/" >
665
665
{ t ( "page-stablecoins-explore-dapps" ) }
666
666
</ ButtonLink >
@@ -672,7 +672,7 @@ const StablecoinsPage = ({ markets, marketsHasError }) => {
672
672
>
673
673
{ t ( "page-stablecoins-more-defi-button" ) }
674
674
</ ButtonLink >
675
- </ Flex >
675
+ </ div >
676
676
</ CalloutBanner >
677
677
< H2 > { t ( "page-stablecoins-save-stablecoins" ) } </ H2 >
678
678
< Flex
0 commit comments