Skip to content

Commit 5c46c0e

Browse files
authored
style: use new table DS
1 parent d41008d commit 5c46c0e

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

src/components/StablecoinsTable.tsx

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,12 @@ const StablecoinsTable = ({
5050
<Table
5151
variant="unstyled"
5252
my={8}
53-
borderRadius="sm"
54-
border={`1px solid ${textColor}`}
5553
bg="background.base"
5654
mb={8}
5755
minW="720px"
5856
>
5957
<Thead bg="background.highlight" color="text200">
60-
<Tr borderBottom={`1px solid ${textColor}`} mb="1px">
58+
<Tr mb="1px">
6159
{columns.map((column, idx) => (
6260
<Th
6361
key={idx}
@@ -90,14 +88,11 @@ const StablecoinsTable = ({
9088
<Tr
9189
key={idx}
9290
color="text"
93-
borderBottom={`1px solid ${textColor}`}
9491
_hover={{
9592
textDecoration: "none",
96-
borderBottom: `1px solid ${textColor}`,
9793
bg: "background.highlight"
9894
}}
9995
_focus={{
100-
borderBottom: `1px solid ${textColor}`,
10196
bg: "background.base",
10297
color: "body.base",
10398
}}

0 commit comments

Comments
 (0)