@@ -44,16 +44,14 @@ const StablecoinsTable = ({
44
44
45
45
return (
46
46
< Table className = "my-8 mb-8 min-w-[720px] bg-background" >
47
- < TableHeader className = "text-body-medium" >
47
+ < TableHeader >
48
48
< TableRow >
49
49
{ columns . map ( ( column , idx ) => (
50
- < TableHead key = { idx } className = "p-4 text-start text-md font-bold" >
51
- { column }
52
- </ TableHead >
50
+ < TableHead key = { idx } > { column } </ TableHead >
53
51
) ) }
54
52
55
53
{ content && content [ 0 ] ?. url && (
56
- < TableHead className = "p-5 text-right text-md font-normal" >
54
+ < TableHead className = "text-right font-normal" >
57
55
< span className = "inline-block" style = { { transform : flipForRtl } } >
58
56
↗
59
57
</ span >
@@ -71,22 +69,17 @@ const StablecoinsTable = ({
71
69
) }
72
70
73
71
{ content . map ( ( { name, marketCap, image, type, url } , idx ) => (
74
- < TableRow
75
- key = { idx }
76
- className = "text focus:bg-background-base focus:text-body-base"
77
- >
78
- < TableCell className = "p-4 align-middle" >
72
+ < TableRow key = { idx } >
73
+ < TableCell >
79
74
< Flex >
80
75
{ image && < img src = { image } alt = "" className = "me-4 h-6 w-6" /> }
81
76
< > { name } </ >
82
77
</ Flex >
83
78
</ TableCell >
84
- < TableCell className = "p-4 align-middle" > { marketCap } </ TableCell >
85
- < TableCell className = "p-4 align-middle" >
86
- { stablecoinsType [ type ] }
87
- </ TableCell >
79
+ < TableCell > { marketCap } </ TableCell >
80
+ < TableCell > { stablecoinsType [ type ] } </ TableCell >
88
81
{ url && (
89
- < TableCell className = "p-4 text-right" >
82
+ < TableCell className = "text-right" >
90
83
< ButtonLink href = { url } size = "sm" >
91
84
{ t ( "page-stablecoins-go-to" ) } { name }
92
85
</ ButtonLink >
0 commit comments