Skip to content

Commit 7ce236f

Browse files
committed
Auto merge of #1856 - hbina:fix_table, r=jtgeibel
Updated crate.scss 1. Fixed table from overflowing when the width is too large. 2. Removed a pointless CSS property. See https://developer.mozilla.org/en-US/docs/Web/CSS/float `inline-block` is ignored due to the `float`. If `float` has a value other than `none`, the box is floated and `display` is treated as `block`. Fixes: #1638
2 parents 06bbe1f + d4905d1 commit 7ce236f

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

app/styles/crate.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -341,6 +341,8 @@
341341

342342
table {
343343
border-collapse: collapse;
344+
display: block;
345+
overflow-x: auto;
344346

345347
th, td {
346348
border: 1px solid #dfe2e5;

0 commit comments

Comments
 (0)