Show all 4 bids on mobile during bidding (remove inner scroll cap)

The mobile bid-history was capped at 110px, hiding the 4th player's bid behind
a scroll even though the panel had room. There are always exactly 4 players, so
show all four rows.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
goyban
2026-07-11 20:54:50 +00:00
parent cb664e4505
commit ab069f2ec3
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "shelem", "name": "shelem",
"version": "1.1.2", "version": "1.1.3",
"description": "Shelem card game — multiplayer", "description": "Shelem card game — multiplayer",
"main": "server.js", "main": "server.js",
"scripts": { "scripts": {
+2 -2
View File
@@ -1278,8 +1278,8 @@ input:focus { border-color: var(--gold); }
box-shadow: 0 6px 28px rgba(0,0,0,.8); box-shadow: 0 6px 28px rgba(0,0,0,.8);
max-height: 55vh; max-height: 55vh;
} }
/* Shrink bid history on mobile so it doesn't swallow the screen */ /* Always 4 players, so show all four bids without an inner scroll */
.bid-history { max-height: 110px; } .bid-history { max-height: none; }
.bid-box h3 { font-size: .95rem; margin-bottom: 0; } .bid-box h3 { font-size: .95rem; margin-bottom: 0; }
} }