Set held card offset to 0.48 on mobile portrait

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
adlee-was-taken
2026-02-22 18:35:58 -05:00
parent ebb00f613c
commit 4a5cfb68f1
2 changed files with 3 additions and 3 deletions

View File

@@ -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 ? 0.55 : 0.35);
const overlapOffset = cardHeight * (isMobilePortrait ? 0.48 : 0.35);
return {
left: centerX - cardWidth / 2,