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:
FireIsGood 2024-06-13 00:39:44 -07:00 committed by GitHub
parent c7f601f03e
commit 68a7002b43
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 1 deletions

View file

@ -18,6 +18,9 @@ body {
display: flex;
flex-direction: column;
min-height: 100vh;
// Stop long words from breaking mobile
overflow-wrap: break-word;
}
img {