Fixed links splitting across line mid-word (#151)

`break-all` meant that links would split mid-word e.g. I observed `email` become `e\nmail`. `break-word` avoids this but also ensures long links still break before overflowing the line length.
This commit is contained in:
daemonspring
2021-10-27 14:31:45 +01:00
committed by GitHub
parent 2e2b1c6f18
commit ac364e5ab7

View File

@@ -160,7 +160,7 @@
} }
& a { & a {
word-break: break-all; word-break: break-word;
} }
&-edited { &-edited {
color: var(--tc-surface-low); color: var(--tc-surface-low);