mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2024-11-27 01:33:04 +00:00
theme: avoid scrollbar for long headings #92
This commit is contained in:
parent
6ddb79481e
commit
3e3a3d164f
1 changed files with 11 additions and 0 deletions
|
@ -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…
Reference in a new issue