Use break-word instead of break-all

This will prevent words being broken mid-word
This commit is contained in:
Karina Kwiatek 2021-08-13 19:50:01 +02:00 committed by Andreas Nedbal
parent 89ce3e6e53
commit 0c8f2ef1e7
2 changed files with 3 additions and 3 deletions

View file

@ -5,7 +5,7 @@
&__answer-date { &__answer-date {
margin-bottom: 0; margin-bottom: 0;
overflow: hidden; overflow: hidden;
word-break: break-all; word-break: break-word;
} }
&__answer-date { &__answer-date {
@ -83,4 +83,4 @@ body:not(.cap-web-share) {
.answerbox__action[name="ab-share"] { .answerbox__action[name="ab-share"] {
display: none; display: none;
} }
} }

View file

@ -9,7 +9,7 @@
&__user, &__user,
&__content { &__content {
margin-bottom: 0; margin-bottom: 0;
word-break: break-all; word-break: break-word;
} }
&__user-avatar { &__user-avatar {