summaryrefslogtreecommitdiff
path: root/client/app.css
diff options
context:
space:
mode:
authorLogan Hunt <loganhunt@simponic.xyz>2022-04-01 16:04:00 -0600
committerLogan Hunt <loganhunt@simponic.xyz>2022-04-01 16:04:00 -0600
commitdbb9eea25f80e7984a112409863be5191af5bf5e (patch)
treecca24e23afc5e7bb4b92a0582aaec48f6a08af72 /client/app.css
parent1108970a6aeb98a2f113383c6437dd4d862dae10 (diff)
downloadlocchat-dbb9eea25f80e7984a112409863be5191af5bf5e.tar.gz
locchat-dbb9eea25f80e7984a112409863be5191af5bf5e.zip
Added way too much stuff
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
+}
+