fix: add div wrapper around markdown tables to allow overflows (#177)

This commit is contained in:
Robert Kaussow 2021-08-02 14:06:24 +02:00 committed by GitHub
parent 4bae11bdc6
commit 0ea7ebf1a2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 2 deletions

View file

@ -110,8 +110,11 @@
}
}
table:not(.lntable) {
.table-wrap {
overflow: auto;
}
table:not(.lntable) {
display: table;
border-spacing: 0;
border-collapse: collapse;