mirror of https://github.com/vector-im/riot-web
Merge pull request #4239 from matrix-org/t3chguy/break
RoomPreviewBar word-break the sender name toopull/21833/head
commit
0aedd02ddb
|
@ -25,9 +25,6 @@ limitations under the License.
|
||||||
h3 {
|
h3 {
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
// break-word, with fallback to break-all, which is wider supported
|
|
||||||
word-break: break-all;
|
|
||||||
word-break: break-word;
|
|
||||||
|
|
||||||
&.mx_RoomPreviewBar_spinnerTitle {
|
&.mx_RoomPreviewBar_spinnerTitle {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
@ -36,6 +33,13 @@ limitations under the License.
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
h3,
|
||||||
|
.mx_RoomPreviewBar_message p {
|
||||||
|
// break-word, with fallback to break-all, which is wider supported
|
||||||
|
word-break: break-all;
|
||||||
|
word-break: break-word;
|
||||||
|
}
|
||||||
|
|
||||||
.mx_Spinner {
|
.mx_Spinner {
|
||||||
width: auto;
|
width: auto;
|
||||||
height: auto;
|
height: auto;
|
||||||
|
|
Loading…
Reference in New Issue