diff options
-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 { |