diff --git a/src/client/src/modules/game/CardComponent.tsx b/src/client/src/modules/game/CardComponent.tsx index 1e72190..0b82d07 100644 --- a/src/client/src/modules/game/CardComponent.tsx +++ b/src/client/src/modules/game/CardComponent.tsx @@ -60,7 +60,7 @@ export const CardComponent: React.FC = ({ card, onDragStart, className={` relative rounded-lg shadow-md cursor-pointer transition-transform hover:scale-105 select-none ${card.tapped ? 'rotate-45' : ''} - ${card.zone === 'hand' ? 'w-32 h-44 -ml-12 first:ml-0 hover:z-10 hover:-translate-y-4' : 'w-24 h-32'} + ${card.zone === 'hand' ? 'w-32 h-44 -ml-12 first:ml-0 hover:z-10 hover:-translate-y-4' : (viewMode === 'cutout' ? 'w-24 h-24' : 'w-24 h-32')} ${className || ''} `} style={style}