Skip to content

Commit 455ba52

Browse files
committed
Add padding to th, td
1 parent 75fbf0b commit 455ba52

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

apps/landing/src/mdx-components.tsx

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,14 @@ export const _components = {
8484
},
8585
th({ children }: { children: React.ReactNode }) {
8686
return (
87-
<Text as="th" border="none" color="$captionBold" m="0">
87+
<Text
88+
as="th"
89+
border="none"
90+
color="$captionBold"
91+
m="0"
92+
px="20px"
93+
py="14px"
94+
>
8895
{children}
8996
</Text>
9097
)
@@ -110,6 +117,8 @@ export const _components = {
110117
border="none"
111118
color="$text"
112119
m="0"
120+
px="20px"
121+
py="14px"
113122
typography="body"
114123
whiteSpace="pre-wrap"
115124
>

0 commit comments

Comments
 (0)