@carefirst/library 2.0.13 → 2.0.15

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,3 @@
1
- export declare const spacerNumberArray: readonly [4, 8, 12, 16, 24, 32, 38, 48, 72];
1
+ export declare const spacerNumberArray: readonly [4, 8, 12, 16, 24, 32, 38, 48, 72, 96];
2
2
  export type SpacerNumberT = (typeof spacerNumberArray)[number];
3
3
  export type SpacerStringT = `${SpacerNumberT}`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carefirst/library",
3
- "version": "2.0.13",
3
+ "version": "2.0.15",
4
4
  "author": "Jacques Francois Coetzee",
5
5
  "private": false,
6
6
  "peerDependencies": {
@@ -53,7 +53,7 @@ cf-btn ion-button {
53
53
  width: 100%;
54
54
  max-width: 358px;
55
55
 
56
- @media (min-width: $desktop-breakpoint) {
56
+ @media (min-width: $cf-screen-breakpoint) {
57
57
  max-width: 420px;
58
58
  }
59
59
  }
@@ -140,7 +140,7 @@ h4 {
140
140
 
141
141
  /*================== Desktop ==================*/
142
142
 
143
- @media (min-width: $desktop-breakpoint) {
143
+ @media (min-width: $cf-screen-breakpoint) {
144
144
  h1 {
145
145
  font-size: 6.4rem;
146
146
  }
@@ -218,7 +218,7 @@ p.body-extra-extra-small {
218
218
 
219
219
  /*================== Desktop ==================*/
220
220
 
221
- @media (min-width: $desktop-breakpoint) {
221
+ @media (min-width: $cf-screen-breakpoint) {
222
222
  p.body-large {
223
223
  font-size: 2.4rem;
224
224
  line-height: 3.2rem;
@@ -6,12 +6,11 @@
6
6
  * @author Jacques Coetzee
7
7
  * @since 2023 - 09 - 04
8
8
  * @usage @import "../node_modules/@carefirst/library/styles/index.scss";
9
+ Add to angular.json - "stylePreprocessorOptions": {"includePaths": ["node_modules/@carefirst/library/public/styles/stylePreprocessorOptions"]}
9
10
  */
10
11
 
11
- //--- Screen size breakpoint
12
- $desktop-breakpoint: 768px; //--- Same as ionic md breakpoint
13
-
14
12
  //--- SCSS Imports
13
+ @import './stylePreprocessorOptions/cf-breakpoint.scss';
15
14
  @import './app.scss';
16
15
  @import './colors.scss';
17
16
  @import './font.scss';
@@ -0,0 +1,2 @@
1
+ //--- Screen size breakpoint
2
+ $cf-screen-breakpoint: 768px; //--- Same as ionic md breakpoint