@onemrvapublic/design-system-theme 18.2.4-develop.4 → 18.2.4-develop.6
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/components/_expansion.scss +2 -0
- package/index.scss +3 -1
- package/package.json +1 -1
- package/utilities/_fonts.scss +10 -0
package/index.scss
CHANGED
|
@@ -136,7 +136,9 @@
|
|
|
136
136
|
@include mat.core();
|
|
137
137
|
@include mat.core-theme(variables.$onemrva-theme);
|
|
138
138
|
@include mat.core-base(variables.$onemrva-theme);
|
|
139
|
-
|
|
139
|
+
@include mat.typography-hierarchy(
|
|
140
|
+
variables.$onemrva-theme
|
|
141
|
+
); // this breaks the font styles
|
|
140
142
|
}
|
|
141
143
|
|
|
142
144
|
// Base for Web components
|
package/package.json
CHANGED
package/utilities/_fonts.scss
CHANGED
|
@@ -19,6 +19,16 @@
|
|
|
19
19
|
|
|
20
20
|
$typography: map.get($onemrva-theme, 'typography');
|
|
21
21
|
@include mat.m2-typography-level($typography, 'body-1');
|
|
22
|
+
color: µ.grayscale($onemrva-theme, 900);
|
|
23
|
+
|
|
24
|
+
.mat-small {
|
|
25
|
+
@include mat.m2-typography-level($typography, 'body-2');
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.mat-body-strong,
|
|
29
|
+
.mat-semibold {
|
|
30
|
+
font-weight: 600;
|
|
31
|
+
}
|
|
22
32
|
|
|
23
33
|
.heading {
|
|
24
34
|
@include mat.m2-typography-level($typography, 'headline-1');
|