@carefirst/library 3.1.1 → 3.1.3
Sign up to get free protection for your applications and to get access to all the features.
- package/esm2022/lib/components/alert/alert.component.mjs +2 -2
- package/esm2022/lib/components/page/page.component.mjs +2 -2
- package/esm2022/lib/components/verification-code/verification-code.component.mjs +2 -2
- package/fesm2022/carefirst-library.mjs +6 -6
- package/fesm2022/carefirst-library.mjs.map +1 -1
- package/package.json +1 -1
- package/public/styles/app.scss +20 -0
package/package.json
CHANGED
package/public/styles/app.scss
CHANGED
@@ -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
|
===============================================*/
|