diff options
author | tpart <tpart120@proton.me> | 2023-06-24 23:08:28 +0200 |
---|---|---|
committer | tpart <tpart120@proton.me> | 2023-06-24 23:08:28 +0200 |
commit | 8a3ce39893022a862f5faa4e893badbef9e7125b (patch) | |
tree | 496c053a97a860c58ecc8ae8a363d21022ab95c3 | |
parent | 57eba53182e09459eacf782b383523c94b78c0fe (diff) | |
download | keks-meet-8a3ce39893022a862f5faa4e893badbef9e7125b.tar keks-meet-8a3ce39893022a862f5faa4e893badbef9e7125b.tar.bz2 keks-meet-8a3ce39893022a862f5faa4e893badbef9e7125b.tar.zst |
Improve CSS
-rw-r--r-- | client-web/public/assets/style/master.css | 7 | ||||
-rw-r--r-- | client-web/public/assets/style/room.css | 3 |
2 files changed, 3 insertions, 7 deletions
diff --git a/client-web/public/assets/style/master.css b/client-web/public/assets/style/master.css index 074f39a..e08e8c2 100644 --- a/client-web/public/assets/style/master.css +++ b/client-web/public/assets/style/master.css @@ -35,9 +35,6 @@ body.start { body { font-weight: 300; background-color: var(--bg-dark); - height: 100vh; - width: 100vw; - justify-content: left; } h1 { @@ -147,10 +144,6 @@ button:disabled, display: flex; } -.room { - width: 100%; -} - #room-id-input { padding: 0.5em; font-size: x-large; diff --git a/client-web/public/assets/style/room.css b/client-web/public/assets/style/room.css index ad84325..1a82f0c 100644 --- a/client-web/public/assets/style/room.css +++ b/client-web/public/assets/style/room.css @@ -5,6 +5,9 @@ */ .room { overflow-y: scroll; + width: 100%; + display: flex; + flex-wrap: wrap; } .user { |