From fb7453f7b0481fed9a44948b445634da39d93442 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Sat, 27 Sep 2025 19:59:12 +0300 Subject: [PATCH] feat(website): improve icon fit --- apps/website/src/components/Card.tsx | 4 ++-- apps/website/src/style.css | 5 +++++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/apps/website/src/components/Card.tsx b/apps/website/src/components/Card.tsx index 035c73e84..60a39e92e 100644 --- a/apps/website/src/components/Card.tsx +++ b/apps/website/src/components/Card.tsx @@ -18,8 +18,8 @@ export default function Card({ title, children, imageUrl, iconSvg, className, mo

- {iconSvg && <>{" "} } - {title} + {iconSvg && }{" "} + {title}

diff --git a/apps/website/src/style.css b/apps/website/src/style.css index f5fa57964..36588c45d 100644 --- a/apps/website/src/style.css +++ b/apps/website/src/style.css @@ -116,6 +116,11 @@ img { font-weight: 300; margin: 0; color: var(--brand-1); + margin-bottom: 0.5em; +} + +.card-content h3 > span { + vertical-align: middle; } .card > .image {