mirror of
https://github.com/getzola/zola
synced 2024-11-10 06:14:19 +00:00
Docs: Fix long words breaking the site on small screens (#2521)
* Add overflow wrap for long words * Fix specific case of overflowing text
This commit is contained in:
parent
c7f601f03e
commit
68a7002b43
2 changed files with 4 additions and 1 deletions
|
@ -18,6 +18,9 @@ body {
|
|||
display: flex;
|
||||
flex-direction: column;
|
||||
min-height: 100vh;
|
||||
|
||||
// Stop long words from breaking mobile
|
||||
overflow-wrap: break-word;
|
||||
}
|
||||
|
||||
img {
|
||||
|
|
Loading…
Reference in a new issue