@carefirst/library 7.0.3 → 7.0.4
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 +1 -1
- package/public/styles/font.scss +16 -6
package/package.json
CHANGED
package/public/styles/font.scss
CHANGED
|
@@ -278,34 +278,44 @@ p.body-extra-extra-small {
|
|
|
278
278
|
===============================================*/
|
|
279
279
|
|
|
280
280
|
@mixin button-text-base {
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
line-height: auto;
|
|
286
|
-
}
|
|
281
|
+
font-family: 'Roboto', sans-serif;
|
|
282
|
+
font-weight: 500;
|
|
283
|
+
font-style: normal;
|
|
284
|
+
line-height: auto;
|
|
287
285
|
}
|
|
288
286
|
|
|
289
287
|
ion-button[class^='cf-button-'],
|
|
290
288
|
.cf-button-text {
|
|
291
289
|
@include button-text-base;
|
|
292
290
|
font-size: 1.2rem;
|
|
291
|
+
> p {
|
|
292
|
+
@include button-text-base;
|
|
293
|
+
}
|
|
293
294
|
}
|
|
294
295
|
|
|
295
296
|
ion-button[class^='cf-button-'].text-extra-small,
|
|
296
297
|
.cf-button-text-extra-small {
|
|
297
298
|
@include button-text-base;
|
|
298
299
|
font-size: 0.8rem;
|
|
300
|
+
> p {
|
|
301
|
+
@include button-text-base;
|
|
302
|
+
}
|
|
299
303
|
}
|
|
300
304
|
|
|
301
305
|
ion-button[class^='cf-button-'].text-small,
|
|
302
306
|
.cf-button-text-small {
|
|
303
307
|
@include button-text-base;
|
|
304
308
|
font-size: 1rem;
|
|
309
|
+
> p {
|
|
310
|
+
@include button-text-base;
|
|
311
|
+
}
|
|
305
312
|
}
|
|
306
313
|
|
|
307
314
|
ion-button[class^='cf-button-'].text-large,
|
|
308
315
|
.cf-button-text-large {
|
|
309
316
|
@include button-text-base;
|
|
310
317
|
font-size: 1.6rem;
|
|
318
|
+
> p {
|
|
319
|
+
@include button-text-base;
|
|
320
|
+
}
|
|
311
321
|
}
|