theme: avoid scrollbar for long headings #92

This commit is contained in:
Sören Weber 2021-09-29 00:20:44 +02:00
parent 6ddb79481e
commit 3e3a3d164f
No known key found for this signature in database
GPG key ID: 07D17FF580AE7589

View file

@ -688,6 +688,17 @@ hr {
#body-inner pre { #body-inner pre {
white-space: pre-wrap; white-space: pre-wrap;
} }
#body-inner h1,
#body-inner h2,
#body-inner h3,
#body-inner h4,
#body-inner h5,
#body-inner h6 {
/* big titles cause a horizontal scrollbar - fixing this by wrapping text */
overflow-x: hidden;
overflow-wrap: break-word;
}
table { table {
border: 1px solid #ccc; border: 1px solid #ccc;
margin-bottom: 1rem; margin-bottom: 1rem;