mirror of
https://github.com/McShelby/hugo-theme-relearn
synced 2025-04-30 15:29:19 +08:00
theme: avoid scrollbar for long headings #92
This commit is contained in:
parent
6ddb79481e
commit
3e3a3d164f
@ -688,6 +688,17 @@ hr {
|
||||
#body-inner pre {
|
||||
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 {
|
||||
border: 1px solid #ccc;
|
||||
margin-bottom: 1rem;
|
||||
|
Loading…
x
Reference in New Issue
Block a user