After upgrading from 0.18.0 to 0.18.3, I find that word wrap on articles and divs breaks words into multiple lines.
Previously, words would not wrap over multiple lines and instead sentenced would wrap at word breaks.
This appears to be a regression in 0.18.1/2/3 that didn't exist in 0.18.0
0.18.3
Word wrap now happens in between words instead of in word breaks. This makes articles very hard to read.
Steps to reproduce the behavior:
I expect sentences to only break in word breaks rather than in the middle of words
On Novela 0.18.3

On Novela 0.18.0

Chrome, Safari
issue is on line 35 of theme in src/styles/global.ts — change line-break to line-break: auto;

Same problem here. I opened a pull request fixing the issue yesterday: #435. Just need it to be verified and merged.
The issue was introduced with pull request #431.
@jshmllr Is there any advantage to having line-break: auto rather than leaving it out completely, like it was before the erroneous pull request?
Awesome. Just tried with 0.18.4 that includes your changes @Tommrodrigues and it's back to working.
Thanks for catching that line-break style change.
Most helpful comment
Same problem here. I opened a pull request fixing the issue yesterday: #435. Just need it to be verified and merged.
The issue was introduced with pull request #431.
@jshmllr Is there any advantage to having
line-break: autorather than leaving it out completely, like it was before the erroneous pull request?