@carefirst/library 3.1.1 → 3.1.2

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carefirst/library",
3
- "version": "3.1.1",
3
+ "version": "3.1.2",
4
4
  "author": "Jacques Francois Coetzee",
5
5
  "private": false,
6
6
  "peerDependencies": {
@@ -2,12 +2,32 @@
2
2
  box-sizing: border-box;
3
3
  }
4
4
 
5
+ /*===============================================
6
+ ===================== Modals ====================
7
+ ===============================================*/
5
8
  //--- Full-screen Modals
6
9
  ion-modal {
7
10
  --height: 100dvh;
8
11
  --width: 100dvw;
9
12
  }
10
13
 
14
+ /*===============================================
15
+ ================ Device Specific ================
16
+ ===============================================*/
17
+ //--- Desktop specific
18
+ @media (min-width: $cf-screen-breakpoint) {
19
+ .only-display-mobile {
20
+ display: none;
21
+ }
22
+ }
23
+
24
+ //--- Mobile specific
25
+ @media not (min-width: $cf-screen-breakpoint) {
26
+ .only-display-desktop {
27
+ display: none;
28
+ }
29
+ }
30
+
11
31
  /*===============================================
12
32
  ===================== Logos =====================
13
33
  ===============================================*/