Skip to content

Commit

Permalink
Fix horizontal padding issue in tables (#233)
Browse files Browse the repository at this point in the history
Signed-off-by: Damian Stasik <[email protected]>
  • Loading branch information
damianstasik authored Dec 19, 2023
1 parent b37571e commit 6d9cc1c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/TextContent/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ const classNames = [
"dark:prose-headings:text-gray-50",

// <th>, <td>
"prose-th:px-3",
"prose-td:px-3",
"prose-th:!px-3",
"prose-td:!px-3",
];

export default function TextContent({
Expand Down

0 comments on commit 6d9cc1c

Please sign in to comment.