diff options
| author | metamuffin <metamuffin@disroot.org> | 2023-06-24 23:20:47 +0200 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2023-06-24 23:20:47 +0200 |
| commit | 1a0e378ab04fb0b0a88dc3d2d91487117904ff1e (patch) | |
| tree | a276f669f0ce42407729f5904d9ad09705892ac1 /client-web/public/assets/style/chat.css | |
| parent | 2c5e565a613e5d235113b39647a54a6b90388136 (diff) | |
| download | keks-meet-1a0e378ab04fb0b0a88dc3d2d91487117904ff1e.tar keks-meet-1a0e378ab04fb0b0a88dc3d2d91487117904ff1e.tar.bz2 keks-meet-1a0e378ab04fb0b0a88dc3d2d91487117904ff1e.tar.zst | |
sass
Diffstat (limited to 'client-web/public/assets/style/chat.css')
| -rw-r--r-- | client-web/public/assets/style/chat.css | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/client-web/public/assets/style/chat.css b/client-web/public/assets/style/chat.css deleted file mode 100644 index b4e1dbf..0000000 --- a/client-web/public/assets/style/chat.css +++ /dev/null @@ -1,46 +0,0 @@ -/* - This file is part of keks-meet (https://codeberg.org/metamuffin/keks-meet) - which is licensed under the GNU Affero General Public License (version 3); see /COPYING. - Copyright (C) 2022 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; -} - -.chat .message { - margin: 0.2em; -} -.chat .author { - font-weight: bold; -} -.chat .text { - color: white; -} -.chat .image { - width: min(20em, 30vw); - max-height: 50em; /* TODO squishes the image if too high */ -} - -.chat .messages { - height: calc(100% - 3em); - width: 100%; - overflow: scroll; -} -.chat .controls { - padding: 1em; -} -.chat input { - font-size: x-large; - width: 100%; -} |