mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 20:35:21 +08:00
9b95a65dff
Changing from break-all to break-word because otherwise longer words (not just links) are split into separ ate lines.
27 lines
363 B
SCSS
27 lines
363 B
SCSS
.chat-thread-original-message {
|
|
display: flex;
|
|
margin: 0.5rem 0rem;
|
|
|
|
&__inner-container {
|
|
width: 100%;
|
|
}
|
|
|
|
&__excerpt {
|
|
padding-bottom: 0.25rem;
|
|
word-break: break-word;
|
|
|
|
> * {
|
|
pointer-events: none;
|
|
}
|
|
}
|
|
|
|
&__author {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
&__avatar {
|
|
padding: 0.25rem 0.25rem 0.25rem 0;
|
|
}
|
|
}
|