@onemrvapublic/design-system-theme 18.2.13 → 18.2.14-develop.1
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/_button.scss +1 -0
- package/index.scss +17 -0
- package/package.json +1 -1
package/components/_button.scss
CHANGED
package/index.scss
CHANGED
|
@@ -201,4 +201,21 @@
|
|
|
201
201
|
@include spacing.spacing();
|
|
202
202
|
@include grid.grid();
|
|
203
203
|
@include utilities.utilities();
|
|
204
|
+
|
|
205
|
+
// Material design doesn't support h5 and h6 natively
|
|
206
|
+
h5,
|
|
207
|
+
h6 {
|
|
208
|
+
font-family: Poppins, sans-serif;
|
|
209
|
+
font-weight: 600 !important;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
h5 {
|
|
213
|
+
font-size: 18px !important;
|
|
214
|
+
line-height: 32px !important;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
h6 {
|
|
218
|
+
font-size: 16px !important;
|
|
219
|
+
line-height: 28px !important;
|
|
220
|
+
}
|
|
204
221
|
}
|