@axos-web-dev/shared-components 2.0.0-dev.31.insights.7 → 2.0.0-dev.32
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/dist/Auth/ErrorAlert.js +1 -1
- package/dist/Calculators/ApyCalculator/index.js +2 -1
- package/dist/Calculators/Calculator.js +1 -1
- package/dist/Chatbot/ChatWindow.css.js +1 -0
- package/dist/Chatbot/ChatWindow.d.ts +1 -0
- package/dist/Chatbot/ChatWindow.js +5 -10
- package/dist/Chatbot/Chatbot.css.js +0 -1
- package/dist/Chatbot/Chatbot.js +75 -42
- package/dist/Chatbot/ChatbotMessage.d.ts +1 -0
- package/dist/Chatbot/ChatbotMessage.js +2 -1
- package/dist/Chatbot/store/messages.d.ts +6 -1
- package/dist/Chatbot/store/messages.js +62 -3
- package/dist/FdicCallout/index.js +1 -1
- package/dist/Forms/EmailOnly.js +11 -1
- package/dist/Forms/SuccesForm.js +1 -1
- package/dist/Insight/Featured/CategorySelector.css.d.ts +3 -4
- package/dist/Insight/Featured/CategorySelector.css.js +7 -9
- package/dist/Insight/Featured/CategorySelector.js +23 -53
- package/dist/Insight/Featured/Featured.css.d.ts +4 -13
- package/dist/Insight/Featured/Featured.css.js +18 -37
- package/dist/Insight/Featured/Featured.d.ts +0 -1
- package/dist/Insight/Featured/Featured.js +93 -129
- package/dist/Insight/Featured/Header.css.d.ts +0 -1
- package/dist/Insight/Featured/Header.css.js +6 -9
- package/dist/Insight/Featured/Header.js +17 -10
- package/dist/Insight/Featured/index.js +4 -13
- package/dist/Insight/index.js +4 -13
- package/dist/NavigationMenu/AxosBank/MobileMenu/MobileNavData.js +1 -1
- package/dist/NavigationMenu/AxosBank/SubNavBar.js +1 -1
- package/dist/assets/Forms/Forms.css +1 -2
- package/dist/assets/Input/Input.css +0 -1
- package/dist/assets/Insight/Featured/CategorySelector.css +38 -53
- package/dist/assets/Insight/Featured/Featured.css +65 -126
- package/dist/assets/Insight/Featured/Header.css +13 -22
- package/dist/icons/Clock/index.js +0 -1
- package/dist/main.js +3 -12
- package/dist/utils/allowedAxosDomains.js +0 -2
- package/package.json +5 -4
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { CategorySelector, InsightItem } from "./CategorySelector.js";
|
|
2
2
|
import { Featured, FeaturedItem } from "./Featured.js";
|
|
3
|
-
import {
|
|
3
|
+
import { featured_center_vertical, featured_grid, featured_hero, featured_maingrid, featured_maingrid_img, featured_maingrid_item, featured_maingrid_title, featured_section, featured_subgrid, featured_subgrid_divider, featured_subgrid_item, featured_subgrid_title, featured_supertag, featured_title } from "./Featured.css.js";
|
|
4
4
|
import { BreadcumbHeader } from "./Header.js";
|
|
5
5
|
export {
|
|
6
6
|
BreadcumbHeader,
|
|
@@ -8,27 +8,18 @@ export {
|
|
|
8
8
|
Featured,
|
|
9
9
|
FeaturedItem,
|
|
10
10
|
InsightItem,
|
|
11
|
-
divider_tab,
|
|
12
11
|
featured_center_vertical,
|
|
13
12
|
featured_grid,
|
|
14
|
-
|
|
13
|
+
featured_hero,
|
|
15
14
|
featured_maingrid,
|
|
16
15
|
featured_maingrid_img,
|
|
17
16
|
featured_maingrid_item,
|
|
18
|
-
featured_maingrid_text,
|
|
19
17
|
featured_maingrid_title,
|
|
20
18
|
featured_section,
|
|
21
|
-
featured_subcontent,
|
|
22
19
|
featured_subgrid,
|
|
20
|
+
featured_subgrid_divider,
|
|
23
21
|
featured_subgrid_item,
|
|
24
22
|
featured_subgrid_title,
|
|
25
|
-
featured_subimage,
|
|
26
|
-
featured_subouter,
|
|
27
|
-
featured_subwrap,
|
|
28
23
|
featured_supertag,
|
|
29
|
-
featured_title
|
|
30
|
-
info_details,
|
|
31
|
-
onhover,
|
|
32
|
-
ratio,
|
|
33
|
-
tab_details
|
|
24
|
+
featured_title
|
|
34
25
|
};
|
package/dist/Insight/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { CategorySelector, InsightItem } from "./Featured/CategorySelector.js";
|
|
2
2
|
import { Featured, FeaturedItem } from "./Featured/Featured.js";
|
|
3
|
-
import {
|
|
3
|
+
import { featured_center_vertical, featured_grid, featured_hero, featured_maingrid, featured_maingrid_img, featured_maingrid_item, featured_maingrid_title, featured_section, featured_subgrid, featured_subgrid_divider, featured_subgrid_item, featured_subgrid_title, featured_supertag, featured_title } from "./Featured/Featured.css.js";
|
|
4
4
|
import { BreadcumbHeader } from "./Featured/Header.js";
|
|
5
5
|
import { article_aside, article_blockquote, article_main_content, article_navigation_link, article_navigation_list, article_navigation_title, article_preview_img, article_preview_wrapper, article_share, article_share_buttons, article_share_icon, article_share_link, article_share_p, article_share_svg, article_spacer, elementSpacer_block, footnotes, insight_header, insight_header_2, insight_header_3, insight_header_4, insight_info__divider, insight_info_row, insight_intro_p, insight_list_item, insight_p } from "./Insight.css.js";
|
|
6
6
|
export {
|
|
@@ -24,28 +24,22 @@ export {
|
|
|
24
24
|
article_share_p,
|
|
25
25
|
article_share_svg,
|
|
26
26
|
article_spacer,
|
|
27
|
-
divider_tab,
|
|
28
27
|
elementSpacer_block,
|
|
29
28
|
featured_center_vertical,
|
|
30
29
|
featured_grid,
|
|
31
|
-
|
|
30
|
+
featured_hero,
|
|
32
31
|
featured_maingrid,
|
|
33
32
|
featured_maingrid_img,
|
|
34
33
|
featured_maingrid_item,
|
|
35
|
-
featured_maingrid_text,
|
|
36
34
|
featured_maingrid_title,
|
|
37
35
|
featured_section,
|
|
38
|
-
featured_subcontent,
|
|
39
36
|
featured_subgrid,
|
|
37
|
+
featured_subgrid_divider,
|
|
40
38
|
featured_subgrid_item,
|
|
41
39
|
featured_subgrid_title,
|
|
42
|
-
featured_subimage,
|
|
43
|
-
featured_subouter,
|
|
44
|
-
featured_subwrap,
|
|
45
40
|
featured_supertag,
|
|
46
41
|
featured_title,
|
|
47
42
|
footnotes,
|
|
48
|
-
info_details,
|
|
49
43
|
insight_header,
|
|
50
44
|
insight_header_2,
|
|
51
45
|
insight_header_3,
|
|
@@ -54,8 +48,5 @@ export {
|
|
|
54
48
|
insight_info_row,
|
|
55
49
|
insight_intro_p,
|
|
56
50
|
insight_list_item,
|
|
57
|
-
insight_p
|
|
58
|
-
onhover,
|
|
59
|
-
ratio,
|
|
60
|
-
tab_details
|
|
51
|
+
insight_p
|
|
61
52
|
};
|
|
@@ -60,7 +60,7 @@ const getMenuData = (resolveUrl) => ({
|
|
|
60
60
|
"{AXOSBANK}/personal/borrow/mortgages/buying-a-home/get-pre-qualified"
|
|
61
61
|
),
|
|
62
62
|
"Get a Rate Quote": resolveUrl("{AXOSBANK}/personal/borrow/mortgages"),
|
|
63
|
-
"Apply Now": resolveUrl("{
|
|
63
|
+
"Apply Now": resolveUrl("{SECURE}/login?apply_mortgage=true"),
|
|
64
64
|
"Mortgage Services": resolveUrl(
|
|
65
65
|
"{AXOSBANK}/personal/borrow/mortgages/buying-a-home/process"
|
|
66
66
|
),
|
|
@@ -16,7 +16,6 @@
|
|
|
16
16
|
}
|
|
17
17
|
.tfms6a0 {
|
|
18
18
|
font-size: 40px;
|
|
19
|
-
line-height: 1.15;
|
|
20
19
|
}
|
|
21
20
|
.tfms6a1 {
|
|
22
21
|
padding-inline: 120px;
|
|
@@ -51,7 +50,7 @@
|
|
|
51
50
|
padding-bottom: 32px;
|
|
52
51
|
}
|
|
53
52
|
.tfms6a8 {
|
|
54
|
-
margin-bottom:
|
|
53
|
+
margin-bottom: 32px;
|
|
55
54
|
}
|
|
56
55
|
.tfms6a9 {
|
|
57
56
|
background: var(--_1073cm81);
|
|
@@ -1,71 +1,43 @@
|
|
|
1
1
|
._13y9ptj0 {
|
|
2
|
-
padding
|
|
2
|
+
padding: 24px 0;
|
|
3
3
|
}
|
|
4
4
|
._13y9ptj1 {
|
|
5
5
|
display: flex;
|
|
6
6
|
justify-content: space-between;
|
|
7
|
+
margin-bottom: 24px;
|
|
7
8
|
align-items: center;
|
|
8
|
-
margin-bottom: clamp(24px, calc(1.5rem + ((1vw - 9.85px) * 2.7119)), 32px);
|
|
9
9
|
}
|
|
10
10
|
._13y9ptj2 {
|
|
11
|
-
|
|
11
|
+
display: none;
|
|
12
|
+
}
|
|
13
|
+
._13y9ptj2._13y9ptj1 .sc__btn {
|
|
14
|
+
margin-top: 24px;
|
|
15
|
+
margin-bottom: 0;
|
|
16
|
+
}
|
|
17
|
+
._13y9ptj3 {
|
|
18
|
+
font-size: 24px;
|
|
12
19
|
color: var(--_1073cm85);
|
|
13
20
|
text-decoration: none;
|
|
14
21
|
font-family: var(--header-font-family);
|
|
15
22
|
text-transform: capitalize;
|
|
16
23
|
font-weight: 700;
|
|
17
24
|
}
|
|
18
|
-
.
|
|
25
|
+
._13y9ptj4 {
|
|
19
26
|
text-transform: capitalize;
|
|
20
27
|
}
|
|
21
|
-
.
|
|
28
|
+
._13y9ptj5 {
|
|
22
29
|
display: grid;
|
|
23
30
|
grid-template-columns: 1fr 1fr 1fr;
|
|
24
31
|
gap: 24px;
|
|
25
|
-
overflow
|
|
26
|
-
scroll-behavior: smooth;
|
|
27
|
-
scroll-snap-type: x mandatory;
|
|
28
|
-
}
|
|
29
|
-
._13y9ptj4::-webkit-scrollbar {
|
|
30
|
-
height: 15px;
|
|
31
|
-
}
|
|
32
|
-
._13y9ptj4::-webkit-scrollbar-track {
|
|
33
|
-
background: #F1F1F1;
|
|
34
|
-
border-radius: 10px;
|
|
35
|
-
}
|
|
36
|
-
._13y9ptj4::-webkit-scrollbar-thumb {
|
|
37
|
-
background: #1e629a;
|
|
38
|
-
border-radius: 10px;
|
|
39
|
-
border: 4px solid transparent;
|
|
40
|
-
background-clip: padding-box;
|
|
41
|
-
}
|
|
42
|
-
._13y9ptj5 {
|
|
43
|
-
border: 1px solid #b9c1ce;
|
|
44
|
-
display: flex;
|
|
45
|
-
flex-direction: column;
|
|
46
|
-
min-width: 286px;
|
|
47
|
-
scroll-snap-align: start;
|
|
32
|
+
overflow: hidden;
|
|
48
33
|
}
|
|
49
34
|
._13y9ptj6 {
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
width: 100%;
|
|
53
|
-
overflow: hidden;
|
|
35
|
+
max-width: 370px;
|
|
36
|
+
grid-template-rows: 1fr 1fr;
|
|
54
37
|
}
|
|
55
38
|
._13y9ptj7 {
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
}
|
|
59
|
-
._13y9ptj8 {
|
|
60
|
-
padding: 24px;
|
|
61
|
-
color: #14263D;
|
|
62
|
-
flex: 1 1 0%;
|
|
63
|
-
display: flex;
|
|
64
|
-
flex-direction: column;
|
|
65
|
-
}
|
|
66
|
-
._13y9ptj9 {
|
|
67
|
-
font-size: 24px !important;
|
|
68
|
-
margin-bottom: 16px;
|
|
39
|
+
font-size: 28px;
|
|
40
|
+
padding-bottom: 10px;
|
|
69
41
|
-webkit-line-clamp: 2;
|
|
70
42
|
box-orient: vertical;
|
|
71
43
|
overflow: hidden;
|
|
@@ -74,25 +46,38 @@
|
|
|
74
46
|
-webkit-box-orient: vertical;
|
|
75
47
|
display: -webkit-box;
|
|
76
48
|
}
|
|
77
|
-
.
|
|
78
|
-
|
|
49
|
+
._13y9ptj8 {
|
|
50
|
+
padding: 24px;
|
|
51
|
+
color: #333D46;
|
|
52
|
+
font-family: var(--main-font-family);
|
|
53
|
+
min-height: 182px;
|
|
54
|
+
display: grid;
|
|
55
|
+
grid-template-rows: 120px 30px;
|
|
79
56
|
}
|
|
80
|
-
.
|
|
81
|
-
|
|
82
|
-
|
|
57
|
+
._13y9ptj9 {
|
|
58
|
+
aspect-ratio: 16 / 9;
|
|
59
|
+
}
|
|
60
|
+
@media screen and (max-width:1024px) {
|
|
61
|
+
._13y9ptj5 {
|
|
62
|
+
grid-template-columns: 1fr 1fr 1fr;
|
|
63
|
+
}
|
|
83
64
|
}
|
|
84
65
|
@media screen and (max-width:768px) {
|
|
85
|
-
.
|
|
66
|
+
._13y9ptj2 {
|
|
86
67
|
display: flex;
|
|
87
68
|
}
|
|
69
|
+
._13y9ptj5 {
|
|
70
|
+
grid-template-columns: 1fr;
|
|
71
|
+
justify-items: center;
|
|
72
|
+
}
|
|
88
73
|
}
|
|
89
74
|
@media screen and (max-width: 768px) {
|
|
90
|
-
:is(._13y9ptj1):not(.
|
|
75
|
+
:is(._13y9ptj1):not(._13y9ptj2) .sc__btn {
|
|
91
76
|
display: none;
|
|
92
77
|
}
|
|
93
78
|
}
|
|
94
79
|
@media screen and (min-width:768px) {
|
|
95
|
-
.
|
|
80
|
+
._13y9ptj2._13y9ptj1 .sc__btn {
|
|
96
81
|
display: none;
|
|
97
82
|
}
|
|
98
83
|
}
|
|
@@ -1,93 +1,34 @@
|
|
|
1
1
|
._1sr2o6v0 {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
._1sr2o6v0:hover {
|
|
6
|
-
opacity: 0.75;
|
|
2
|
+
min-height: 725px;
|
|
3
|
+
width: 100%;
|
|
4
|
+
padding: 48px 0;
|
|
7
5
|
}
|
|
8
6
|
._1sr2o6v1 {
|
|
9
|
-
|
|
10
|
-
padding-
|
|
11
|
-
padding-block-start: 0;
|
|
7
|
+
color: #ffffff;
|
|
8
|
+
padding-bottom: 24px;
|
|
12
9
|
}
|
|
13
10
|
._1sr2o6v2 {
|
|
14
|
-
color: var(--_1073cm8c);
|
|
15
|
-
font-size: 18px;
|
|
16
|
-
line-height: 1.15;
|
|
17
|
-
padding-bottom: 16px;
|
|
18
|
-
}
|
|
19
|
-
._1sr2o6v3 {
|
|
20
11
|
font-size: 14px;
|
|
21
12
|
}
|
|
22
|
-
.
|
|
23
|
-
display: grid;
|
|
24
|
-
grid-template-columns: 1fr 1fr;
|
|
25
|
-
gap: 32px;
|
|
26
|
-
}
|
|
27
|
-
._1sr2o6v5 {
|
|
28
|
-
border-radius: 16px;
|
|
29
|
-
cursor: pointer;
|
|
30
|
-
overflow: hidden;
|
|
31
|
-
text-decoration: none;
|
|
32
|
-
}
|
|
33
|
-
._1sr2o6v6 {
|
|
34
|
-
aspect-ratio: 1.69;
|
|
35
|
-
width: 100%;
|
|
36
|
-
}
|
|
37
|
-
._1sr2o6v7 {
|
|
13
|
+
._1sr2o6v3 {
|
|
38
14
|
display: grid;
|
|
39
|
-
|
|
40
|
-
|
|
15
|
+
grid-template-columns: 3fr 2fr;
|
|
16
|
+
gap: 25px;
|
|
41
17
|
}
|
|
42
|
-
.
|
|
43
|
-
font-size: clamp(24px, calc(1.5rem + ((1vw - 7.69px) * 1.5656)), 32px);
|
|
44
|
-
line-height: 1.15;
|
|
45
|
-
overflow: hidden;
|
|
46
|
-
text-overflow: ellipsis;
|
|
47
|
-
display: -webkit-box;
|
|
48
|
-
-webkit-box-orient: vertical;
|
|
49
|
-
-webkit-line-clamp: 2;
|
|
50
|
-
line-clamp: 2;
|
|
51
|
-
color: var(--_1073cm8c);
|
|
52
|
-
transition: color 0.3s ease;
|
|
53
|
-
}
|
|
54
|
-
._1sr2o6v0:hover ._1sr2o6v8 {
|
|
55
|
-
color: var(--_1073cm82);
|
|
56
|
-
}
|
|
57
|
-
._1sr2o6v9 {
|
|
58
|
-
color: var(--_1073cm8c);
|
|
59
|
-
font-size: 16px;
|
|
60
|
-
line-height: 1.5;
|
|
61
|
-
margin-bottom: 0;
|
|
62
|
-
display: -webkit-box;
|
|
63
|
-
-webkit-box-orient: vertical;
|
|
64
|
-
line-clamp: 3;
|
|
65
|
-
-webkit-line-clamp: 3;
|
|
66
|
-
overflow: hidden;
|
|
67
|
-
text-overflow: ellipsis;
|
|
68
|
-
}
|
|
69
|
-
._1sr2o6va {
|
|
70
|
-
color: var(--_1073cm8f);
|
|
71
|
-
font-size: 14px;
|
|
72
|
-
line-height: 1.5;
|
|
73
|
-
}
|
|
74
|
-
._1sr2o6vc {
|
|
18
|
+
._1sr2o6v4 {
|
|
75
19
|
display: flex;
|
|
76
20
|
flex-direction: column;
|
|
77
21
|
justify-content: space-between;
|
|
78
|
-
|
|
79
|
-
}
|
|
80
|
-
._1sr2o6vd {
|
|
81
|
-
border-radius: 12px;
|
|
82
|
-
flex-basis: 269px;
|
|
83
|
-
max-width: 269px;
|
|
84
|
-
overflow: hidden;
|
|
22
|
+
max-height: 525px;
|
|
85
23
|
}
|
|
86
|
-
.
|
|
87
|
-
flex: 1 1
|
|
24
|
+
._1sr2o6v5 {
|
|
25
|
+
flex: 1 1 100%;
|
|
26
|
+
cursor: pointer;
|
|
88
27
|
text-decoration: none;
|
|
89
28
|
}
|
|
90
|
-
.
|
|
29
|
+
._1sr2o6v6 {
|
|
30
|
+
margin-bottom: 8px;
|
|
31
|
+
max-height: min(76px, 108px);
|
|
91
32
|
display: -webkit-box;
|
|
92
33
|
-webkit-box-orient: vertical;
|
|
93
34
|
line-clamp: 2;
|
|
@@ -95,80 +36,78 @@
|
|
|
95
36
|
overflow: hidden;
|
|
96
37
|
text-overflow: ellipsis;
|
|
97
38
|
width: 100%;
|
|
98
|
-
font-size: 20px !important;
|
|
99
|
-
transition: color 0.3s ease;
|
|
100
39
|
}
|
|
101
|
-
.
|
|
102
|
-
|
|
40
|
+
._1sr2o6v7 {
|
|
41
|
+
margin: clamp(24px, 28px, 38px) 0;
|
|
42
|
+
color: #D4D4D4;
|
|
43
|
+
display: block;
|
|
103
44
|
}
|
|
104
|
-
.
|
|
45
|
+
._1sr2o6v8 {
|
|
105
46
|
display: inline-block;
|
|
106
47
|
vertical-align: middle;
|
|
107
48
|
}
|
|
108
|
-
.
|
|
49
|
+
._1sr2o6v9 {
|
|
50
|
+
display: grid;
|
|
51
|
+
background: #ffffff;
|
|
52
|
+
border-radius: 16px;
|
|
53
|
+
height: 100%;
|
|
54
|
+
cursor: pointer;
|
|
55
|
+
border: 1px solid #D4D4D4;
|
|
56
|
+
text-decoration: none;
|
|
57
|
+
overflow: hidden;
|
|
58
|
+
max-height: 525px;
|
|
59
|
+
}
|
|
60
|
+
._1sr2o6va {
|
|
61
|
+
grid-template-rows: 340px 1fr;
|
|
62
|
+
}
|
|
63
|
+
._1sr2o6vb {
|
|
109
64
|
height: 100%;
|
|
110
65
|
object-fit: cover;
|
|
66
|
+
width: 100%;
|
|
111
67
|
}
|
|
112
|
-
.
|
|
68
|
+
._1sr2o6vc {
|
|
113
69
|
padding: 24px;
|
|
114
70
|
color: #333D46;
|
|
115
71
|
font-family: var(--main-font-family);
|
|
116
72
|
min-height: 170px;
|
|
117
73
|
}
|
|
118
|
-
.
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
74
|
+
._1sr2o6vd {
|
|
75
|
+
font-size: clamp(1.75rem, 1.269rem + 1.923vw, 2.5rem) !important;
|
|
76
|
+
line-height: clamp(2.25rem, 1.625rem + 1.667vw, 3.125rem) !important;
|
|
77
|
+
overflow: hidden;
|
|
78
|
+
text-overflow: ellipsis;
|
|
79
|
+
margin-bottom: 8px;
|
|
80
|
+
max-height: max(76px, 100px);
|
|
81
|
+
display: -webkit-box;
|
|
82
|
+
-webkit-box-orient: vertical;
|
|
83
|
+
line-clamp: 2;
|
|
84
|
+
-webkit-line-clamp: 2;
|
|
85
|
+
width: 100%;
|
|
127
86
|
}
|
|
128
|
-
@media screen and (
|
|
129
|
-
._1sr2o6v4 {
|
|
130
|
-
grid-template-columns: clamp(285px, calc(17.8125rem + ((1vw - 7.69px) * 58.5127)), 584px) 1fr;
|
|
131
|
-
}
|
|
132
|
-
._1sr2o6v9 {
|
|
133
|
-
font-size: clamp(14px, calc(0.875rem + ((1vw - 7.69px) * 0.3914)), 16px);
|
|
134
|
-
}
|
|
87
|
+
@media screen and (max-width:1024px) {
|
|
135
88
|
._1sr2o6vd {
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
._1sr2o6ve {
|
|
139
|
-
height: clamp(10px, calc(0.625rem + ((1vw - 7.69px) * 1.9569)), 20px);
|
|
140
|
-
}
|
|
141
|
-
._1sr2o6vg {
|
|
142
|
-
font-size: clamp(16px, calc(1rem + ((1vw - 7.69px) * 0.7828)), 20px) !important;
|
|
89
|
+
font-size: 32px !important;
|
|
90
|
+
line-height: 46px !important;
|
|
143
91
|
}
|
|
144
92
|
}
|
|
145
93
|
@media screen and (max-width:768px) {
|
|
146
|
-
.
|
|
147
|
-
font-size: 16px;
|
|
148
|
-
padding-bottom: 24px;
|
|
149
|
-
}
|
|
150
|
-
._1sr2o6v4 {
|
|
94
|
+
._1sr2o6v3 {
|
|
151
95
|
grid-template-columns: 1fr;
|
|
152
96
|
}
|
|
153
|
-
.
|
|
154
|
-
|
|
155
|
-
border-block-start: 1px solid #98A3B6;
|
|
97
|
+
._1sr2o6v7 {
|
|
98
|
+
margin: 24px 0;
|
|
156
99
|
}
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
._1sr2o6vb {
|
|
160
|
-
font-size: 12px;
|
|
100
|
+
._1sr2o6va {
|
|
101
|
+
grid-template-rows: 314px 1fr;
|
|
161
102
|
}
|
|
162
|
-
}
|
|
163
|
-
@media screen and (max-width:650px) {
|
|
164
103
|
._1sr2o6vd {
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
._1sr2o6vk {
|
|
169
|
-
gap: 8px;
|
|
104
|
+
font-size: 28px !important;
|
|
105
|
+
line-height: 36px !important;
|
|
106
|
+
max-height: 80px;
|
|
170
107
|
}
|
|
171
|
-
|
|
172
|
-
|
|
108
|
+
}
|
|
109
|
+
@media screen and (min-width:769px) {
|
|
110
|
+
._1sr2o6v3 {
|
|
111
|
+
min-height: min(525px, 680px);
|
|
173
112
|
}
|
|
174
113
|
}
|
|
@@ -1,49 +1,40 @@
|
|
|
1
1
|
._19yqlq40 {
|
|
2
|
-
|
|
2
|
+
padding: 24px 0;
|
|
3
3
|
display: flex;
|
|
4
4
|
flex-direction: column;
|
|
5
5
|
gap: 24px;
|
|
6
|
-
padding-block-start: 48px;
|
|
7
|
-
padding-block-end: clamp(24px, calc(1.5rem + ((1vw - 6.03px) * 14.5455)), 48px);
|
|
8
6
|
}
|
|
9
7
|
._19yqlq41 {
|
|
10
|
-
margin-inline: auto;
|
|
11
|
-
width: min(1200px,100% - 4rem);
|
|
12
|
-
box-sizing: border-box;
|
|
13
|
-
}
|
|
14
|
-
._19yqlq42 {
|
|
15
8
|
display: flex;
|
|
16
9
|
gap: 6px;
|
|
17
10
|
text-transform: capitalize;
|
|
18
11
|
letter-spacing: 0.2px;
|
|
19
12
|
font-size: 14px;
|
|
20
13
|
}
|
|
21
|
-
.
|
|
14
|
+
._19yqlq42 {
|
|
22
15
|
text-decoration: underline;
|
|
23
16
|
cursor: pointer;
|
|
24
17
|
text-underline-offset: 2px;
|
|
25
18
|
}
|
|
26
|
-
.
|
|
19
|
+
._19yqlq42:hover {
|
|
27
20
|
opacity: 0.75;
|
|
28
21
|
}
|
|
29
|
-
.
|
|
22
|
+
._19yqlq43 {
|
|
30
23
|
text-transform: capitalize;
|
|
31
24
|
}
|
|
32
|
-
h1.
|
|
33
|
-
font-size:
|
|
34
|
-
line-height: 1.
|
|
35
|
-
min-height: 0vh;
|
|
25
|
+
h1._19yqlq43 {
|
|
26
|
+
font-size: 48px;
|
|
27
|
+
line-height: 1.3;
|
|
36
28
|
}
|
|
37
|
-
.
|
|
29
|
+
._19yqlq44 {
|
|
38
30
|
max-width: 800px;
|
|
39
31
|
}
|
|
40
|
-
@media screen and (max-width:603px) {
|
|
41
|
-
._19yqlq41 {
|
|
42
|
-
width: calc(100% - 2rem);
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
32
|
@media screen and (max-width:768px) {
|
|
46
|
-
.
|
|
33
|
+
h1._19yqlq43 {
|
|
34
|
+
font-size: 28px;
|
|
35
|
+
line-height: 36px;
|
|
36
|
+
}
|
|
37
|
+
._19yqlq44 {
|
|
47
38
|
max-width: unset;
|
|
48
39
|
width: min(1200px, calc(100% - 4rem));
|
|
49
40
|
}
|
package/dist/main.js
CHANGED
|
@@ -165,7 +165,7 @@ import { DownPaymentInput } from "./Input/DownPaymentInput.js";
|
|
|
165
165
|
import { RadioButton, RadioButtonSet } from "./Input/RadioButton.js";
|
|
166
166
|
import { CategorySelector, InsightItem } from "./Insight/Featured/CategorySelector.js";
|
|
167
167
|
import { Featured, FeaturedItem } from "./Insight/Featured/Featured.js";
|
|
168
|
-
import {
|
|
168
|
+
import { featured_center_vertical, featured_grid, featured_hero, featured_maingrid, featured_maingrid_img, featured_maingrid_item, featured_maingrid_title, featured_section, featured_subgrid, featured_subgrid_divider, featured_subgrid_item, featured_subgrid_title, featured_supertag, featured_title } from "./Insight/Featured/Featured.css.js";
|
|
169
169
|
import { BreadcumbHeader } from "./Insight/Featured/Header.js";
|
|
170
170
|
import { article_aside, article_blockquote, article_main_content, article_navigation_link, article_navigation_list, article_navigation_title, article_preview_img, article_preview_wrapper, article_share, article_share_buttons, article_share_icon, article_share_link, article_share_p, article_share_svg, article_spacer, elementSpacer_block, footnotes, insight_header, insight_header_2, insight_header_3, insight_header_4, insight_info__divider, insight_info_row, insight_intro_p, insight_list_item, insight_p } from "./Insight/Insight.css.js";
|
|
171
171
|
import { Interstitial } from "./Interstitial/Interstitial.js";
|
|
@@ -559,7 +559,6 @@ export {
|
|
|
559
559
|
details,
|
|
560
560
|
disclosureForm,
|
|
561
561
|
divider,
|
|
562
|
-
divider_tab,
|
|
563
562
|
dp_input,
|
|
564
563
|
dropdown,
|
|
565
564
|
dynPH,
|
|
@@ -583,20 +582,16 @@ export {
|
|
|
583
582
|
feature_title,
|
|
584
583
|
featured_center_vertical,
|
|
585
584
|
featured_grid,
|
|
586
|
-
|
|
585
|
+
featured_hero,
|
|
587
586
|
featured_maingrid,
|
|
588
587
|
featured_maingrid_img,
|
|
589
588
|
featured_maingrid_item,
|
|
590
|
-
featured_maingrid_text,
|
|
591
589
|
featured_maingrid_title,
|
|
592
590
|
featured_section,
|
|
593
|
-
featured_subcontent,
|
|
594
591
|
featured_subgrid,
|
|
592
|
+
featured_subgrid_divider,
|
|
595
593
|
featured_subgrid_item,
|
|
596
594
|
featured_subgrid_title,
|
|
597
|
-
featured_subimage,
|
|
598
|
-
featured_subouter,
|
|
599
|
-
featured_subwrap,
|
|
600
595
|
featured_supertag,
|
|
601
596
|
featured_title,
|
|
602
597
|
filterParams,
|
|
@@ -691,7 +686,6 @@ export {
|
|
|
691
686
|
imgAlignment,
|
|
692
687
|
img_area,
|
|
693
688
|
img_contents,
|
|
694
|
-
info_details,
|
|
695
689
|
inline_button,
|
|
696
690
|
inline_button_wrapper,
|
|
697
691
|
inline_container,
|
|
@@ -756,7 +750,6 @@ export {
|
|
|
756
750
|
notificationStyle,
|
|
757
751
|
ol,
|
|
758
752
|
one_row,
|
|
759
|
-
onhover,
|
|
760
753
|
order_3,
|
|
761
754
|
overlay,
|
|
762
755
|
padding,
|
|
@@ -779,7 +772,6 @@ export {
|
|
|
779
772
|
rate_container,
|
|
780
773
|
rate_pad,
|
|
781
774
|
rate_table_title,
|
|
782
|
-
ratio,
|
|
783
775
|
related_insight,
|
|
784
776
|
remove_padding,
|
|
785
777
|
resposiveLabel,
|
|
@@ -838,7 +830,6 @@ export {
|
|
|
838
830
|
svg_fill,
|
|
839
831
|
svg_icon,
|
|
840
832
|
svg_logo,
|
|
841
|
-
tab_details,
|
|
842
833
|
table,
|
|
843
834
|
tableCell,
|
|
844
835
|
tableHead,
|
|
@@ -14,7 +14,6 @@ const getMoreDomains = (domains) => ({
|
|
|
14
14
|
"{UFBDIRECT}": domains.UFB_URL || "https://www.ufbdirect.com",
|
|
15
15
|
"{ARMS}": domains.ARMS_URL || "https://arms.axosadvisor.com",
|
|
16
16
|
"{APPS}": domains.APPS_URL || "https://apps.axosbank.com",
|
|
17
|
-
"{AFP}": domains.AFP_URL || "https://afp.axosbank.com",
|
|
18
17
|
"{INVESTORS}": domains.INVESTORS_URL || "https://investors.axosfinancial.com",
|
|
19
18
|
"{UNVENROLLMENT}": domains.UNVENROLLMENT_URL || "https://enroll.axosbank.com",
|
|
20
19
|
"{AUTOAXB}": "https://auto.axosbank.com/partner/axos-purchase/AU",
|
|
@@ -22,7 +21,6 @@ const getMoreDomains = (domains) => ({
|
|
|
22
21
|
"{DEVAXC}": domains.DEVELOPER_CLEARING || "https://developer.axosclearing.com",
|
|
23
22
|
"{AFF}": domains.FUNDFINDER_URL || "https://axosfundfinder.com",
|
|
24
23
|
"{APL}": domains.PERSONAL_LOANS_URL || "https://personalloans.axosbank.com",
|
|
25
|
-
"{AXSEC}": domains.AXOS_SECURE_URL || "https://secure.axosbank.com",
|
|
26
24
|
"{SECURE}": domains.AXOS_SECURE_URL || "https://secure.axosbank.com",
|
|
27
25
|
"{DOWNLOADAXOS}": domains.AXOS_DOWNLOAD_URL || "https://downloads.axos.com",
|
|
28
26
|
"{SBEAX}": domains.SBB_ENROLL || "https://small-business-enrollment.axosbank.com",
|