1
0
mirror of https://github.com/kognise/water.css.git synced 2025-08-14 00:54:08 +02:00

Break words when word wrapping

Prevents long strings of characters (say, "AAAAAAAAAAAAAAAAAAAAAAAA" for example) from going out of the content area and making you have to scroll.
This commit is contained in:
dotcomboom
2019-11-14 21:37:50 -06:00
committed by GitHub
parent bc386c2bcb
commit b8ae8497b7

View File

@@ -5,6 +5,7 @@ body {
max-width: 800px;
margin: 20px auto;
padding: 0 10px;
word-wrap: break-word;
color: var(--text-main);
background: var(--background-body);