diff options
| author | metamuffin <metamuffin@disroot.org> | 2022-09-09 17:49:39 +0200 | 
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2022-09-09 17:49:39 +0200 | 
| commit | 3a657c2f6d4cc9f82c993a8d390c8a84ab38bcb4 (patch) | |
| tree | 731c854754d1408d189552da79bd81d79d11183f /client-web/public/assets/style/chat.css | |
| parent | b0c6062607b037ba1a6e388e5c23746bdd8dbdcf (diff) | |
| download | keks-meet-3a657c2f6d4cc9f82c993a8d390c8a84ab38bcb4.tar keks-meet-3a657c2f6d4cc9f82c993a8d390c8a84ab38bcb4.tar.bz2 keks-meet-3a657c2f6d4cc9f82c993a8d390c8a84ab38bcb4.tar.zst | |
chat!
Diffstat (limited to 'client-web/public/assets/style/chat.css')
| -rw-r--r-- | client-web/public/assets/style/chat.css | 29 | 
1 files changed, 29 insertions, 0 deletions
| diff --git a/client-web/public/assets/style/chat.css b/client-web/public/assets/style/chat.css new file mode 100644 index 0000000..12741e6 --- /dev/null +++ b/client-web/public/assets/style/chat.css @@ -0,0 +1,29 @@ +/* TODO all of these rules are totally stupid */ +.chat { +    overflow: scroll; + +    background-color: var(--bg); +    padding: 1em; +    border-radius: 1em; +} + +.chat .message { +    margin: 0.2em; +} +.chat .author { +    font-weight: bold; +} +.chat .content { +    color: white; +} +.chat .messages { +    height: calc(100% - 5em); +    width: 100%; +    overflow: scroll; +} +.chat .controls { +    padding: 1em; +} +.chat input { +    width: 100%; +} | 
