Skip to content

Commit 18b658c

Browse files
committed
fix: minimize button not working
1 parent 6d80fb1 commit 18b658c

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

src/base/styles/chat.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
style.add(
22
'.clickable { cursor: pointer; }',
33
'.mainContent { margin-bottom: 55px; }', // Never have the footer cover the bottom of the page
4-
'.chat-box { min-height: 150px; }', // Fix chat getting too small
54
);

0 commit comments

Comments
 (0)