Skip to content

Commit

Permalink
Fixed layout breaking when the message is hidden. oopsie (#529)
Browse files Browse the repository at this point in the history
  • Loading branch information
ftwpala authored Dec 15, 2024
1 parent 46da864 commit c49d932
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions assets/chat/css/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,9 @@ label small {
#chat-whisper-btn {
margin-right: 20px;
}
#chat-settings-btn {
margin-left: 20px;
}
}
#chat-windows-select {
box-shadow: 0 2px 6px black;
Expand Down Expand Up @@ -208,14 +211,15 @@ label small {
font-family: $chat-lines-font;
font-size: $text-size-md;
color: red;
display: none;
opacity: 0;
text-align: center;
align-content: center;
user-select: text; // otherwise it feels weird
user-select: none;
}

#chat-input-error.show {
display: block;
opacity: 1;
user-select: text; // otherwise it feels weird
}

#chat-input-scaler, #chat-input-control {
Expand Down

0 comments on commit c49d932

Please sign in to comment.