Merge pull request #1824 from thewheat/fix-table-overflow

Fix table overflow when there is long data that exceeds page width
pull/1825/head
Simon Legner 2 years ago committed by GitHub
commit 454a9b29a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -134,6 +134,9 @@ table {
border-collapse: separate;
border-spacing: 0;
border-radius: 3px;
display: inline-block;
overflow-x: auto;
max-width: 100%;
}
caption {

Loading…
Cancel
Save