summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorOliver <oliver@mohlin.dev>2025-09-22 15:24:11 +0200
committerTobias Järvelöv <tobias.jarvelov@mullvad.net>2025-09-30 11:22:22 +0200
commit771b2e6e685779d718bd54360854572e90341579 (patch)
tree7c3c78a84549fdc09c2ae6a45586fc6bc0b494a0
parent3268be71a8ee52cd62a70432aef44a402c22fc22 (diff)
downloadmullvadvpn-771b2e6e685779d718bd54360854572e90341579.tar.xz
mullvadvpn-771b2e6e685779d718bd54360854572e90341579.zip
Add labelTiny typography variant
-rw-r--r--desktop/packages/mullvad-vpn/src/renderer/lib/foundations/variables/typography-variables.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/desktop/packages/mullvad-vpn/src/renderer/lib/foundations/variables/typography-variables.ts b/desktop/packages/mullvad-vpn/src/renderer/lib/foundations/variables/typography-variables.ts
index 9ec5c787cf..8723c9c6fe 100644
--- a/desktop/packages/mullvad-vpn/src/renderer/lib/foundations/variables/typography-variables.ts
+++ b/desktop/packages/mullvad-vpn/src/renderer/lib/foundations/variables/typography-variables.ts
@@ -71,6 +71,7 @@ export type Typography =
| 'titleMedium'
| 'bodySmall'
| 'bodySmallSemibold'
+ | 'labelTiny'
| 'labelTinySemiBold'
| 'footnoteMini';
@@ -112,6 +113,12 @@ export const typography: Record<Typography, TypographyProperties> = {
fontSize: FontSizes.small,
lineHeight: LineHeights.small,
},
+ labelTiny: {
+ fontFamily: Fonts.label,
+ fontWeight: FontWeights.regular,
+ fontSize: FontSizes.tiny,
+ lineHeight: LineHeights.tiny,
+ },
labelTinySemiBold: {
fontFamily: Fonts.label,
fontWeight: FontWeights.semiBold,