Skip to content

Commit a5a7728

Browse files
authored
Merge pull request #15496 from Anish-Gupta1/Anish_Gupta1/fix#15489
Fix incorrect line-height in card text
2 parents a099f9d + d8e16ed commit a5a7728

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Staking/StakingProductsCardGrid/StakingProductCard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ export const StakingProductCard = ({
191191
{data.map(({ label, status }, idx) => (
192192
<li
193193
key={idx}
194-
className={`my-4 me-0 ms-auto flex items-center gap-1 text-md leading-3 ${status === "false" && "text-body-medium"}`}
194+
className={`my-4 me-0 ms-auto flex items-center gap-1 text-base/none ${status === "false" && "text-body-medium"}`}
195195
>
196196
<Status status={status} />
197197
{label}

0 commit comments

Comments
 (0)