mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-03-31 04:52:12 +02:00
Use break-word
instead of break-all
This will prevent words being broken mid-word
This commit is contained in:
parent
89ce3e6e53
commit
0c8f2ef1e7
2 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
Loading…
Reference in a new issue