Skip to content

Commit 9292888

Browse files
committed
fix: review
1 parent f691a91 commit 9292888

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

apps/site/components/EOL/VulnerabilitiesTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import type { Vulnerability } from '#site/types/vulnerabilities';
88
const VulnerabilitiesTable: FC<{
99
vulnerabilities: Array<Vulnerability>;
1010
maxWidth?: string;
11-
}> = ({ vulnerabilities, maxWidth = 'max-w-2xs' }) => {
11+
}> = ({ vulnerabilities, maxWidth = 'md:max-w-2xs' }) => {
1212
const t = useTranslations();
1313

1414
if (!vulnerabilities.length) {

packages/ui-components/src/styles/markdown.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,8 @@ main {
137137
/* Common border and text styles */
138138
th,
139139
td {
140-
@apply border
140+
@apply break-words
141+
border
141142
border-r-0
142143
border-t-0
143144
border-neutral-200
@@ -203,7 +204,6 @@ main {
203204
td {
204205
@apply relative
205206
block
206-
break-words
207207
border-0
208208
border-b
209209
px-0

0 commit comments

Comments
 (0)