File tree Expand file tree Collapse file tree 1 file changed +12
-28
lines changed Expand file tree Collapse file tree 1 file changed +12
-28
lines changed Original file line number Diff line number Diff line change @@ -47,23 +47,15 @@ const StablecoinsTable = ({
47
47
}
48
48
49
49
return (
50
- < Table
51
- variant = "unstyled"
52
- my = { 8 }
53
- borderRadius = "sm"
54
- border = { `1px solid ${ textColor } ` }
55
- bg = "background.base"
56
- mb = { 8 }
57
- minW = "720px"
58
- >
59
- < Thead bg = "ednBackground" color = "text200" >
60
- < Tr borderBottom = { `1px solid ${ textColor } ` } mb = "1px" >
50
+ < Table variant = "unstyled" my = { 8 } bg = "background.base" mb = { 8 } minW = "720px" >
51
+ < Thead bg = "background.highlight" color = "body.medium" >
52
+ < Tr >
61
53
{ columns . map ( ( column , idx ) => (
62
54
< Th
63
55
key = { idx }
64
- py = { 5 }
56
+ fontWeight = "bold"
65
57
fontSize = "md"
66
- fontWeight = "normal "
58
+ verticalAlign = "inherit "
67
59
letterSpacing = "normal"
68
60
>
69
61
{ column }
@@ -90,31 +82,23 @@ const StablecoinsTable = ({
90
82
< Tr
91
83
key = { idx }
92
84
color = "text"
93
- borderBottom = { `1px solid ${ textColor } ` }
94
85
_hover = { {
95
86
textDecoration : "none" ,
96
- borderBottom : `1px solid ${ textColor } ` ,
97
- bg : "primary200" ,
98
- color : "black300" ,
87
+ bg : "background.highlight" ,
99
88
} }
100
89
_focus = { {
101
- borderBottom : `1px solid ${ textColor } ` ,
102
- bg : "primary200" ,
103
- color : "black300" ,
90
+ bg : "background.base" ,
91
+ color : "body.base" ,
104
92
} }
105
93
>
106
- < Td >
107
- < Flex align = "center" >
94
+ < Td verticalAlign = "middle" >
95
+ < Flex >
108
96
{ image && < Image src = { image } alt = "" me = { 4 } boxSize = { 6 } /> }
109
97
< > { name } </ >
110
98
</ Flex >
111
99
</ Td >
112
- < Td >
113
- < Flex align = "center" > { marketCap } </ Flex >
114
- </ Td >
115
- < Td >
116
- < Flex align = "center" > { stablecoinsType [ type ] } </ Flex >
117
- </ Td >
100
+ < Td verticalAlign = "middle" > { marketCap } </ Td >
101
+ < Td verticalAlign = "middle" > { stablecoinsType [ type ] } </ Td >
118
102
{ url && (
119
103
< Td textAlign = "end" >
120
104
< ButtonLink to = { url } size = "sm" >
You can’t perform that action at this time.
0 commit comments