Prevent overflow of long links and words

When a word (or any string withtout breakpoints (spaces, dashes....), making links the most common place where this becamoes an issue)  is wider than its container, the text will simply overflow any container, including the viewport. This commit fixes this behaviour by making the word-drap strategy of the browser more aggresive.
This commit is contained in:
Claudio Yanes
2022-03-09 17:58:01 +00:00
committed by GitHub
parent 651bfc5cd2
commit f70128a3de

View File

@ -183,6 +183,10 @@ article {
border-radius: 3px;
}
}
& p {
overflow-wrap: anywhere;
}
}
.backlinks a {