summaryrefslogtreecommitdiff
path: root/client/app.css
diff options
context:
space:
mode:
Diffstat (limited to 'client/app.css')
-rw-r--r--client/app.css19
1 files changed, 16 insertions, 3 deletions
diff --git a/client/app.css b/client/app.css
index 016c256..09fb38e 100644
--- a/client/app.css
+++ b/client/app.css
@@ -66,11 +66,23 @@ body {
box-shadow: rgb( 0, 0, 0, 0.6) 6px 45px 45px -12px;
}
-.chat {
+.chat-container {
border-bottom: 1px solid #d65d0e;
height: 200px;
- overflow-y: scroll;
padding-bottom: 12px;
+ display: flex;
+ flex-direction: row;
+ min-height: min-content;
+}
+
+.chat-box {
+ flex: 3;
+ overflow-y: scroll;
+}
+
+.chat-connections {
+ flex: 1;
+ overflow-y: scroll;
}
* {
@@ -116,4 +128,5 @@ body {
color: #8ec07c;
border-radius: 8px;
display: inline-block;
-} \ No newline at end of file
+}
+