Use `break-word` instead of `break-all`
This will prevent words being broken mid-word
This commit is contained in:
parent
89ce3e6e53
commit
0c8f2ef1e7
|
@ -5,7 +5,7 @@
|
|||
&__answer-date {
|
||||
margin-bottom: 0;
|
||||
overflow: hidden;
|
||||
word-break: break-all;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
&__answer-date {
|
||||
|
@ -83,4 +83,4 @@ body:not(.cap-web-share) {
|
|||
.answerbox__action[name="ab-share"] {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
&__user,
|
||||
&__content {
|
||||
margin-bottom: 0;
|
||||
word-break: break-all;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
&__user-avatar {
|
||||
|
|
Loading…
Reference in New Issue