@momentum-design/components 0.17.1 → 0.17.2
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.
@@ -6,11 +6,15 @@ const styles = css `
|
|
6
6
|
--mdc-themeprovider-font-weight: 400;
|
7
7
|
/* adjusting Inter's letter spacing to better match the old CiscoSans */
|
8
8
|
--mdc-themeprovider-letter-spacing-adjustment: -0.25px;
|
9
|
+
/* Adjusting font feature settings for accessibility reasons */
|
10
|
+
--mdc-themeprovider-font-feature-settings: "ss02" on;
|
9
11
|
|
10
12
|
color: var(--mdc-themeprovider-color-default);
|
11
13
|
font-family: var(--mdc-themeprovider-font-family);
|
12
14
|
font-weight: var(--mdc-themeprovider-font-weight);
|
13
15
|
letter-spacing: var(--mdc-themeprovider-letter-spacing-adjustment);
|
16
|
+
|
17
|
+
font-feature-settings: var(--mdc-themeprovider-font-feature-settings);
|
14
18
|
}
|
15
19
|
`;
|
16
20
|
export default [styles];
|