@carefirst/library 2.0.4 → 2.0.5
Sign up to get free protection for your applications and to get access to all the features.
@@ -9,5 +9,5 @@ export declare class PageComponent implements OnChanges {
|
|
9
9
|
inputDark: boolean;
|
10
10
|
ngOnChanges(changes: SimpleChanges): void;
|
11
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<PageComponent, never>;
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PageComponent, "cf-page", never, { "centerH": { "alias": "centerH"; "required": false; }; "centerV": { "alias": "centerV"; "required": false; }; "dark": { "alias": "dark"; "required": false; }; }, {}, never, ["*", "[footer]"], false, never>;
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PageComponent, "cf-page", never, { "centerH": { "alias": "centerH"; "required": false; }; "centerV": { "alias": "centerV"; "required": false; }; "dark": { "alias": "dark"; "required": false; }; }, {}, never, ["*", "[cf-page-buttons]", "[cf-page-footer]"], false, never>;
|
13
13
|
}
|
package/package.json
CHANGED
package/public/styles/app.scss
CHANGED
@@ -48,6 +48,12 @@ ion-col {
|
|
48
48
|
/*===============================================
|
49
49
|
================== CF Buttons ==================
|
50
50
|
===============================================*/
|
51
|
-
cf-btn
|
51
|
+
cf-btn,
|
52
|
+
cf-btn ion-button {
|
52
53
|
width: 100%;
|
54
|
+
max-width: 358px;
|
55
|
+
|
56
|
+
@media (min-width: $desktop-breakpoint) {
|
57
|
+
max-width: 420px;
|
58
|
+
}
|
53
59
|
}
|