From d4c1083d2b2f0dbba01e8525d81961faf24db23e Mon Sep 17 00:00:00 2001 From: Ryan Malani Date: Sun, 22 Jan 2023 21:28:50 -0500 Subject: [PATCH] fixed overlapping divs when viewing room --- static/styles/style.css | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/static/styles/style.css b/static/styles/style.css index 180678d84..8ff26a850 100644 --- a/static/styles/style.css +++ b/static/styles/style.css @@ -964,7 +964,7 @@ a { } .room__header { - max-height: 30vh; + max-height: 45vh; overflow-y: auto; position: absolute; width: 95%; @@ -1011,6 +1011,10 @@ a { color: var(--color-main); } +.room__info span { + padding-right: 1rem; +} + .room__hosted p { text-transform: uppercase; color: var(--color-gray); @@ -1042,8 +1046,10 @@ a { } .room__conversation { + position: relative; + top: -2.5rem; margin-top: 1rem; - margin-bottom: 4rem; + margin-bottom: 0rem; height: 64%; } @@ -1057,8 +1063,8 @@ a { background: var(--color-bg); border-radius: 0.7rem; overflow-y: auto; - height: 100%; - margin-top: 28vh; + height: 50%; + margin-top: 50vh; padding: 0 2rem 4rem 2rem; }