@kvell-group/ui 1.19.4 → 1.19.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -19,6 +19,7 @@ export const BODY_S_BOLD_FONT_VARIANT = 'body-s-bold' as const
|
|
|
19
19
|
//caption
|
|
20
20
|
export const CAPTION_L_MEDIUM_FONT_VARIANT = 'caption-l-medium' as const
|
|
21
21
|
export const CAPTION_L_REGULAR_FONT_VARIANT = 'caption-l-regular' as const
|
|
22
|
+
export const CAPTION_M_MEDIUM_FONT_VARIANT = 'caption-m-medium' as const
|
|
22
23
|
export const CAPTION_M_REGULAR_FONT_VARIANT = 'caption-m-regular' as const
|
|
23
24
|
|
|
24
25
|
// ----------------------------------------------------------------------
|
|
@@ -131,6 +131,14 @@ p.caption-l-regular,
|
|
|
131
131
|
letter-spacing: var(--mantine-spacing-caption-l);
|
|
132
132
|
}
|
|
133
133
|
|
|
134
|
+
.caption-m-medium {
|
|
135
|
+
font-family: var(--mantine-font-family);
|
|
136
|
+
font-weight: 500;
|
|
137
|
+
font-size: var(--mantine-font-size-caption-m);
|
|
138
|
+
line-height: var(--mantine-line-height-caption-m);
|
|
139
|
+
letter-spacing: var(--mantine-spacing-caption-m);
|
|
140
|
+
}
|
|
141
|
+
|
|
134
142
|
.caption-m-regular {
|
|
135
143
|
font-family: var(--mantine-font-family);
|
|
136
144
|
font-weight: 400;
|