diff options
Diffstat (limited to 'styles')
-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; +} + |