fix overlapping table (#10238)

This commit is contained in:
Ihor Sychevskyi 2021-09-02 01:12:30 +03:00 committed by GitHub
parent 2dfcf8a844
commit d299634bbc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 0 deletions

View File

@ -96,6 +96,15 @@ table {
display: block;
overflow-x: auto;
}
p {
word-break: break-word;
a,
code {
word-break: break-word;
}
}
}
table p:first-of-type {

View File

@ -29,3 +29,9 @@
}
}
}
article {
h2 {
word-break: break-word;
}
}