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 4dcb8c62fd
commit b89fffe959

View File

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