diff --git a/src/components/CardPrimary/CardPrimary.tsx b/src/components/CardPrimary/CardPrimary.tsx index 7fa6d167..1e55476e 100644 --- a/src/components/CardPrimary/CardPrimary.tsx +++ b/src/components/CardPrimary/CardPrimary.tsx @@ -102,16 +102,6 @@ const Content = styled.div<{ $size?: "sm" | "md" }>` flex: 1; `; -const ContentContainer = styled.div<{ $size?: "sm" | "md" }>` - display: flex; - flex-direction: column; - align-self: center; - justify-content: space-between; - width: 100%; - height: 100%; - gap: ${({ $size = "md", theme }) => theme.click.card.primary.space[$size].gap}; -`; - export const CardPrimary = ({ title, icon, @@ -152,22 +142,20 @@ export const CardPrimary = ({ {title} - - - {description} - + + {description} + - {size == "sm" && } + {size == "sm" && } - {infoText && ( - - {infoText} - - )} - + {infoText && ( + + {infoText} + + )} ); };