diff options
author | Kyle Gunger <corechg@gmail.com> | 2020-09-29 14:41:43 -0400 |
---|---|---|
committer | Kyle Gunger <corechg@gmail.com> | 2020-09-29 14:41:43 -0400 |
commit | 5ffbbc8524fb5c42b00c741e9868e99e3f7c3fe4 (patch) | |
tree | f123e548863c2bc8bdddc09d4d22fe4e969703c3 /styles/client | |
parent | 673d16d8f2fb9d7b7df5f6fcadfbc665f329887c (diff) |
Start join game implementation
Diffstat (limited to 'styles/client')
-rw-r--r-- | styles/client/base.css | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/styles/client/base.css b/styles/client/base.css index 889d7bf..e0b19d3 100644 --- a/styles/client/base.css +++ b/styles/client/base.css @@ -144,6 +144,9 @@ div.game { margin-bottom: 10px; padding: 5px; + display: block; + position: relative; + text-align: left; } @@ -326,4 +329,18 @@ div.chat-input > button { div.chat-text > div { word-wrap: break-word; word-break: break-all; -}
\ No newline at end of file +} + +/* Game card element */ + +div.game > h2 { + margin: 0; +} + +button.join { + position: absolute; + + bottom: 5px; + right: 5px; +} + |