Skip to content

Commit

Permalink
Merge pull request #97 from vtexdocs/fix/articles-table-column-size
Browse files Browse the repository at this point in the history
fix: word breaking and width off tables columns
  • Loading branch information
PedroAntunesCosta authored Oct 2, 2024
2 parents 1dd8d88 + bf74e2d commit 1a9aecd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/styles/documentation-page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const articleBox: SxStyleProp = {
},
strong: {
fontWeight: '600',
overflowWrap: 'anywhere',
overflowWrap: 'break-word',
},
hr: {
border: '0.5px solid #E7E9EE',
Expand Down
1 change: 1 addition & 0 deletions src/styles/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ table th {
font-size: 0.875em;
border: 1px solid #e7e9ef;
padding: 0.5em;
min-width: 60px;
}

table tbody tr:nth-of-type(even) {
Expand Down

0 comments on commit 1a9aecd

Please sign in to comment.