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:
parent
2e2b1c6f18
commit
ac364e5ab7
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||||
|
|
Loading…
Reference in a new issue