Skip to content

Commit 2a9824d

Browse files
authored
style: title font weight and Flex center
1 parent 5c46c0e commit 2a9824d

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/components/StablecoinsTable.tsx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ const StablecoinsTable = ({
6060
<Th
6161
key={idx}
6262
py={5}
63+
fontWeight="bold"
6364
fontSize="md"
6465
fontWeight="normal"
6566
letterSpacing="normal"
@@ -98,16 +99,16 @@ const StablecoinsTable = ({
9899
}}
99100
>
100101
<Td>
101-
<Flex align="center">
102+
<Flex align="center" pt={2}>
102103
{image && <Image src={image} alt="" me={4} boxSize={6} />}
103104
<>{name}</>
104105
</Flex>
105106
</Td>
106107
<Td>
107-
<Flex align="center">{marketCap}</Flex>
108+
<Flex align="center" pt={2}>{marketCap}</Flex>
108109
</Td>
109110
<Td>
110-
<Flex align="center">{stablecoinsType[type]}</Flex>
111+
<Flex align="center" pt={2}>{stablecoinsType[type]}</Flex>
111112
</Td>
112113
{url && (
113114
<Td textAlign="end">

0 commit comments

Comments
 (0)