diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-12-15 02:58:17 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2024-01-08 16:36:48 +0100 |
commit | b83115ce40d88c789fbbd5a891057e14d4cf553b (patch) | |
tree | fbccd0059aa41bc05ff7e97b2a5aaa3c2980aca1 /play.html | |
parent | 4640a9affe7633628ce95de0bb5640e30dd71039 (diff) | |
download | table-battles-b83115ce40d88c789fbbd5a891057e14d4cf553b.tar.gz |
stick shift special
Diffstat (limited to 'play.html')
-rw-r--r-- | play.html | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -92,10 +92,15 @@ main { .table_reserve, .table_front, .table_pool { display: flex; justify-content: center; + align-items: start; gap: 24px; padding: 0 23px; } +.flip .table_reserve, .flip .table_front { + align-items: end; +} + .table_front { min-height: 509px; } @@ -135,6 +140,21 @@ main { margin: 12px; } +.slot_shift { + min-height: 11px; + display: flex; + flex-direction: column; + justify-content: end; + align-content: center; + flex-wrap: wrap; + gap: 1px; + margin: 12px; +} + +.slot_shift:empty { + display: none; +} + .slot_dice { display: flex; height: 36px; |