@carefirst/library 6.2.6 → 6.2.8

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carefirst/library",
3
- "version": "6.2.6",
3
+ "version": "6.2.8",
4
4
  "author": "FCS Dev Team",
5
5
  "private": false,
6
6
  "peerDependencies": {
@@ -79,7 +79,7 @@
79
79
  :root {
80
80
  --cf-app-text-color-default: #242424;
81
81
  --cf-app-text-color-light: #fff;
82
- --cf-app-text-color-grey: #6B6B6B;
82
+ --cf-app-text-color-grey: #6b6b6b;
83
83
  --cf-app-text-color-dark-green: #118600;
84
84
  --cf-app-text-color-dark-red: #d60032;
85
85
  --cf-app-text-color-dark-yellow: #c39406;
@@ -254,3 +254,32 @@ p.body-extra-extra-small {
254
254
  line-height: 1.2rem;
255
255
  }
256
256
  }
257
+
258
+ /*===============================================
259
+ ==================== Buttons ====================
260
+ ===============================================*/
261
+
262
+ @mixin button-text-base {
263
+ font-family: 'Roboto', sans-serif;
264
+ font-weight: 500;
265
+ font-style: normal;
266
+ line-height: auto;
267
+ }
268
+
269
+ ion-button[class^='cf-button-'],
270
+ .cf-button-text {
271
+ @include button-text-base;
272
+ font-size: 1.2rem;
273
+ }
274
+
275
+ ion-button[class^='cf-button-'].text-small,
276
+ .cf-button-text-small {
277
+ @include button-text-base;
278
+ font-size: 1rem;
279
+ }
280
+
281
+ ion-button[class^='cf-button-'].text-large,
282
+ .cf-button-text-large {
283
+ @include button-text-base;
284
+ font-size: 1.6rem;
285
+ }