mirror of
https://github.com/thelounge/thelounge
synced 2024-11-10 22:54:15 +00:00
Fix breaking layout when switching portrait/landscape modes
This re-adds the table layout in CSS removed in 3cddbbce6e
, https://github.com/thelounge/lounge/pull/332.
This commit is contained in:
parent
28938be10d
commit
8118d56e16
1 changed files with 6 additions and 3 deletions
|
@ -713,11 +713,14 @@ button {
|
|||
}
|
||||
|
||||
#chat .messages {
|
||||
display: table;
|
||||
table-layout: fixed;
|
||||
width: 100%;
|
||||
padding: 10px 0;
|
||||
overflow-wrap: break-word;
|
||||
}
|
||||
|
||||
#chat .msg {
|
||||
word-wrap: break-word;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
#chat .unread-marker {
|
||||
|
@ -768,7 +771,7 @@ button {
|
|||
#chat .time {
|
||||
color: #ddd;
|
||||
text-align: right;
|
||||
width: 46px;
|
||||
max-width: 46px;
|
||||
min-width: 46px;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue