@onemrvapublic/design-system-theme 19.0.0-develop.3 → 19.0.0-develop.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/index.scss +22 -12
- package/package.json +1 -1
package/index.scss
CHANGED
|
@@ -203,19 +203,29 @@
|
|
|
203
203
|
@include utilities.utilities();
|
|
204
204
|
|
|
205
205
|
// Material design doesn't support h5 and h6 natively
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
206
|
+
.mat-typography {
|
|
207
|
+
h4 {
|
|
208
|
+
font:
|
|
209
|
+
700 20px / 35px Source Sans Pro,
|
|
210
|
+
sans-serif;
|
|
211
|
+
letter-spacing: normal;
|
|
212
|
+
margin: 0 0 16px;
|
|
213
|
+
}
|
|
211
214
|
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
215
|
+
h5,
|
|
216
|
+
h6 {
|
|
217
|
+
font-family: Poppins, sans-serif;
|
|
218
|
+
font-weight: 600;
|
|
219
|
+
}
|
|
216
220
|
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
221
|
+
h5 {
|
|
222
|
+
font-size: 18px;
|
|
223
|
+
line-height: 32px;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
h6 {
|
|
227
|
+
font-size: 16px;
|
|
228
|
+
line-height: 28px;
|
|
229
|
+
}
|
|
220
230
|
}
|
|
221
231
|
}
|