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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -160,7 +160,7 @@
}
& a {
word-break: break-all;
word-break: break-word;
}
&-edited {
color: var(--tc-surface-low);
@ -409,4 +409,4 @@
border-bottom-width: 0px !important;
}
}
}
}