From ab069f2ec35e06917bf1a90fd35124c27b60ded8 Mon Sep 17 00:00:00 2001 From: goyban Date: Sat, 11 Jul 2026 20:54:50 +0000 Subject: [PATCH] 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 --- package.json | 2 +- public/style.css | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index d6424c7..c449b27 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "shelem", - "version": "1.1.2", + "version": "1.1.3", "description": "Shelem card game — multiplayer", "main": "server.js", "scripts": { diff --git a/public/style.css b/public/style.css index 7169878..a798832 100644 --- a/public/style.css +++ b/public/style.css @@ -1278,8 +1278,8 @@ input:focus { border-color: var(--gold); } box-shadow: 0 6px 28px rgba(0,0,0,.8); max-height: 55vh; } - /* Shrink bid history on mobile so it doesn't swallow the screen */ - .bid-history { max-height: 110px; } + /* Always 4 players, so show all four bids without an inner scroll */ + .bid-history { max-height: none; } .bid-box h3 { font-size: .95rem; margin-bottom: 0; } }