We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d80fb1 commit 18b658cCopy full SHA for 18b658c
2 files changed
src/base/styles/chat.js
@@ -0,0 +1,6 @@
1
+style.add(
2
+ '.chat-message { overflow-wrap: break-word; }', // Break text
3
+ '.chat-messages { user-select: text; }', // Always allow chat to be selected
4
+ '.chat-messages { height: calc(100% - 30px); }', // Fix chat window being all funky with sizes
5
+ '.chat-messages { min-height: 100px; }', // Fix chat getting too small
6
+);
src/base/styles/general.js
@@ -1,5 +1,4 @@
style.add(
'.clickable { cursor: pointer; }',
'.mainContent { margin-bottom: 55px; }', // Never have the footer cover the bottom of the page
- '.chat-box { min-height: 150px; }', // Fix chat getting too small
);
0 commit comments