diff options
author | tpart <tpart120@proton.me> | 2023-09-23 22:18:00 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2023-09-23 22:32:45 +0200 |
commit | b415b82a56e42543d4c8e342ec0ee6a560a82024 (patch) | |
tree | 8acb3b8b74e3b981dd8993d36c8de3394502eb7f | |
parent | c283c98446d21adb0d5a3513ea0bde9e9b08a511 (diff) | |
download | keks-meet-b415b82a56e42543d4c8e342ec0ee6a560a82024.tar keks-meet-b415b82a56e42543d4c8e342ec0ee6a560a82024.tar.bz2 keks-meet-b415b82a56e42543d4c8e342ec0ee6a560a82024.tar.zst |
Fix known rooms padding; remove code duplication
Signed-off-by: metamuffin <metamuffin@disroot.org>
-rw-r--r-- | client-web/style/chat.sass | 3 | ||||
-rw-r--r-- | client-web/style/side.sass | 4 |
2 files changed, 2 insertions, 5 deletions
diff --git a/client-web/style/chat.sass b/client-web/style/chat.sass index b5a92dd..d9a3673 100644 --- a/client-web/style/chat.sass +++ b/client-web/style/chat.sass @@ -22,12 +22,9 @@ flex: 1 width: 100% overflow: scroll - padding: 1em - box-sizing: border-box .controls flex: 0 - padding: 1em input font-size: medium diff --git a/client-web/style/side.sass b/client-web/style/side.sass index 956df25..d1ecc8e 100644 --- a/client-web/style/side.sass +++ b/client-web/style/side.sass @@ -8,6 +8,8 @@ z-index: 99 .side-tray height: 100% + padding: 1em + box-sizing: border-box overflow-y: auto background-color: var(--bg) @@ -43,8 +45,6 @@ .preferences width: min(50em, 100vw) height: 100% - padding: 1em - box-sizing: border-box .chat width: min(30em, 100vw) .room-watches |