Lower held card position to just above the labels on mobile portrait
Reduce overlap offset from 1.15 to 0.65 so the held card sits at the DRAW/DISCARD label level rather than up in the opponents area. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -47,7 +47,7 @@ class CardAnimations {
|
||||
const cardWidth = deckRect.width;
|
||||
const cardHeight = deckRect.height;
|
||||
const isMobilePortrait = document.body.classList.contains('mobile-portrait');
|
||||
const overlapOffset = cardHeight * (isMobilePortrait ? 1.15 : 0.35);
|
||||
const overlapOffset = cardHeight * (isMobilePortrait ? 0.65 : 0.35);
|
||||
|
||||
return {
|
||||
left: centerX - cardWidth / 2,
|
||||
|
||||
Reference in New Issue
Block a user