From 08f60081848ca06041daf9b59221221ff31df613 Mon Sep 17 00:00:00 2001 From: Lucy Chyzhova Date: Wed, 29 Jan 2025 14:20:54 +0100 Subject: [PATCH] fix(card): improve visibility of the header --- src/components/card/card.scss | 4 ++++ src/components/card/card.tsx | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/components/card/card.scss b/src/components/card/card.scss index 694c25c378..1148a21e0c 100644 --- a/src/components/card/card.scss +++ b/src/components/card/card.scss @@ -107,6 +107,10 @@ header { gap: 0.125rem; } + .title { + padding-right: 1.25rem; + } + limel-icon { flex-shrink: 0; width: 2rem; diff --git a/src/components/card/card.tsx b/src/components/card/card.tsx index 951f841f37..276fc84ed8 100644 --- a/src/components/card/card.tsx +++ b/src/components/card/card.tsx @@ -179,7 +179,7 @@ export class Card { return; } - return

{this.heading}

; + return

{this.heading}

; } private renderSubheading() {