1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

strong tag support within Text component

* addresses #18651
* taken from #18752 as suggested in https://github.com/MetaMask/metamask-extension/pull/18638#discussion_r1176334805
This commit is contained in:
Matthias Kretschmann 2023-04-25 13:10:24 +01:00 committed by georgewrmarshall
parent a4b1d5516e
commit 568a93213c
No known key found for this signature in database
GPG Key ID: 2B91E142BECFA237
2 changed files with 4 additions and 4 deletions

View File

@ -22,9 +22,5 @@
&__description {
border-bottom: 1px solid var(--color-border-default);
strong {
font-weight: var(--font-weight-bold);
}
}
}

View File

@ -59,6 +59,10 @@ $text-variants: (
@else {
font-weight: $weight;
}
strong {
font-weight: var(--font-weight-bold);
}
}
}