Skip to content

Commit 8a768a3

Browse files
committed
Restore left padding on IconCard link
1 parent db8e657 commit 8a768a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/components/elements/cards/IconCard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export const IconCard = ({card, ...props}: IconCardProps) => {
3535
<CardBody className="pt-2 pb-1 px-4">
3636
<p className="mb-0">{bodyText}</p>
3737
</CardBody>
38-
{clickUrl && buttonStyle !== "card" && <CardFooter className={"border-top-0 pt-3 pb-4"}>
38+
{clickUrl && buttonStyle !== "card" && <CardFooter className={"border-top-0 p-4 pt-3"}>
3939
<Button className={classNames("text-start", {"d-flex align-items-center" : buttonStyle === "link"}, {"external-link": !isAppLink(clickUrl)})} disabled={disabled} outline={buttonStyle === "outline"} color={buttonStyle === "link" ? "link" : "secondary"} tag={Link} to={clickUrl}>
4040
{buttonText || "See more"}
4141
</Button>

0 commit comments

Comments
 (0)