Commit 98854f6fc4fda6f8d94da58ca0c030bada9f196d
1 parent
203f87d2
Exists in
staging
and in
3 other branches
chat: avoid small messages line break
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
public/stylesheets/chat.scss
... | ... | @@ -242,12 +242,12 @@ |
242 | 242 | } |
243 | 243 | |
244 | 244 | #chat-window .history .message .time { |
245 | - float: right; | |
246 | 245 | color: white; |
247 | 246 | font-style: italic; |
248 | 247 | font-size: 10px; |
249 | 248 | border-bottom: 1px solid #d3d7cf; |
250 | - width: 100%; | |
249 | + width: 245px; | |
250 | + display: inline-block; | |
251 | 251 | text-align: right; |
252 | 252 | margin-bottom: 5px; |
253 | 253 | } | ... | ... |