diff options
author | metamuffin <metamuffin@disroot.org> | 2023-06-25 00:43:56 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2023-06-25 00:43:56 +0200 |
commit | 5ab212a57ce299d421c168b03eed73c8bb938a7d (patch) | |
tree | 8380536b81a6eb6ea3d0fff891706789d548cc33 /client-web/style/chat.sass | |
parent | bf0a57609d3792863c1f20a9d2d4b5bd7b0c7576 (diff) | |
download | keks-meet-5ab212a57ce299d421c168b03eed73c8bb938a7d.tar keks-meet-5ab212a57ce299d421c168b03eed73c8bb938a7d.tar.bz2 keks-meet-5ab212a57ce299d421c168b03eed73c8bb938a7d.tar.zst |
chat almost works too
Diffstat (limited to 'client-web/style/chat.sass')
-rw-r--r-- | client-web/style/chat.sass | 19 |
1 files changed, 6 insertions, 13 deletions
diff --git a/client-web/style/chat.sass b/client-web/style/chat.sass index b877333..800e729 100644 --- a/client-web/style/chat.sass +++ b/client-web/style/chat.sass @@ -4,18 +4,8 @@ Copyright (C) 2023 metamuffin <metamuffin@disroot.org> .chat - position: fixed - z-index: 70 - - right: 1em - bottom: 5em - - width: min(30em, 50vw) - height: min(50em, 70vh) - - background-color: var(--bg) - border-radius: 1em - padding: 2em + display: flex + flex-direction: column .message margin: 0.2em @@ -28,11 +18,14 @@ max-height: 50em // TODO squishes the image if too high .messages - height: calc(100% - 3em) + flex: 1 width: 100% overflow: scroll + .controls + flex: 0 padding: 1em + input font-size: x-large width: 100% |