Skip to content

Commit

Permalink
fix: use max height for cards
Browse files Browse the repository at this point in the history
  • Loading branch information
deeonwuli committed May 23, 2024
1 parent ab4c7a5 commit ed43ae4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/webapp/components/card-board/BigCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export const BigCard = styled(BaseCard)`
text-align: left;
margin: 10px 10px 10px;
user-select: none;
height: 305px;
max-height: 305px;
cursor: ${({ onClick, disabled }) => (onClick && !disabled ? "pointer" : "inherit")};
`;

Expand Down

0 comments on commit ed43ae4

Please sign in to comment.