Commit 9ee8a6e8 authored by JC Brand's avatar JC Brand

Fix text wrapping issue for /me messages in overlayed view mode

parent acf14cf8
...@@ -152,7 +152,6 @@ ...@@ -152,7 +152,6 @@
display: flex; display: flex;
flex-direction: row; flex-direction: row;
justify-content: space-between; justify-content: space-between;
width: 100%;
} }
.chat-msg__message { .chat-msg__message {
...@@ -224,6 +223,7 @@ ...@@ -224,6 +223,7 @@
height: var(--message-font-size); height: var(--message-font-size);
font-size: var(--message-font-size); font-size: var(--message-font-size);
padding: 0; padding: 0;
padding-left: 0.2em;
border: none; border: none;
opacity: 0; opacity: 0;
background: transparent; background: transparent;
...@@ -271,7 +271,7 @@ ...@@ -271,7 +271,7 @@
} }
&.chat-msg--action { &.chat-msg--action {
.chat-msg__content { .chat-msg__content {
flex-wrap: nowrap; flex-wrap: wrap;
flex-direction: row; flex-direction: row;
justify-content: flex-start; justify-content: flex-start;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment