@axos-web-dev/shared-components 0.0.83 → 0.0.85
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/Blockquote/Blockquote.module.js +14 -0
- package/dist/Blockquote/index.d.ts +8 -0
- package/dist/Blockquote/index.js +27 -0
- package/dist/Calculators/AnnualFeeCalculator/index.d.ts +1 -1
- package/dist/Calculators/AnnualFeeCalculator/index.js +3 -3
- package/dist/Calculators/BalanceAPYCalculator/BalanceAPYCalculator.css.d.ts +109 -0
- package/dist/Calculators/BalanceAPYCalculator/BalanceAPYCalculator.css.js +41 -0
- package/dist/Calculators/BalanceAPYCalculator/index.d.ts +10 -0
- package/dist/Calculators/BalanceAPYCalculator/index.js +192 -0
- package/dist/Calculators/Calculator.d.ts +1 -1
- package/dist/Calculators/Calculator.js +20 -8
- package/dist/Carousel/index.js +7 -6
- package/dist/Chevron/index.js +7 -6
- package/dist/Comparison/Comparison.js +7 -6
- package/dist/Comparison/ComparisonSet.js +7 -6
- package/dist/FooterSiteMap/AxosBank/FooterSiteMap.js +7 -6
- package/dist/Forms/ContactUsAAS.js +6 -62
- package/dist/Forms/ContactUsBusiness.js +7 -6
- package/dist/Forms/ContactUsNMLSId.js +7 -6
- package/dist/Forms/EmailOnly.js +7 -6
- package/dist/Forms/SuccesForm.js +8 -7
- package/dist/Hyperlink/index.js +7 -6
- package/dist/ImageLink/ImageLink.js +7 -6
- package/dist/ImageLink/ImageLinkSet.js +7 -6
- package/dist/ImageLink/index.js +7 -6
- package/dist/Modal/Modal.js +7 -6
- package/dist/NavigationMenu/AxosBank/SubNavBar.js +10 -7
- package/dist/NavigationMenu/AxosBank/index.js +1 -1
- package/dist/SetContainer/SetContainer.js +7 -6
- package/dist/Table/Table.d.ts +1 -1
- package/dist/Table/Table.interface.d.ts +5 -3
- package/dist/Table/Table.js +11 -3
- package/dist/assets/Blockquote/Blockquote.css.css +68 -0
- package/dist/assets/Calculators/BalanceAPYCalculator/BalanceAPYCalculator.css +200 -0
- package/dist/main.d.ts +1 -0
- package/dist/main.js +2 -0
- package/package.json +113 -111
|
@@ -15,6 +15,7 @@ import "../../ArticlesSet/ArticlesSet.css.js";
|
|
|
15
15
|
/* empty css */
|
|
16
16
|
/* empty css */
|
|
17
17
|
/* empty css */
|
|
18
|
+
import Image from "next/image.js";
|
|
18
19
|
import "../../IconBillboard/IconBillboard.css.js";
|
|
19
20
|
/* empty css */
|
|
20
21
|
import { findMoreAxosDomains } from "../../utils/allowedAxosDomains.js";
|
|
@@ -23,6 +24,10 @@ import "clsx";
|
|
|
23
24
|
import { useState, useEffect } from "react";
|
|
24
25
|
import "../../Button/Button.css.js";
|
|
25
26
|
import { useLocation } from "react-use";
|
|
27
|
+
import "../../Calculators/AnnualFeeCalculator/AnnualFeeCalculator.css.js";
|
|
28
|
+
import "../../Calculators/ApyCalculator/ApyCalculator.css.js";
|
|
29
|
+
/* empty css */
|
|
30
|
+
import "../../Calculators/MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js";
|
|
26
31
|
import "@hookform/resolvers/zod";
|
|
27
32
|
import "../../Input/Checkbox.js";
|
|
28
33
|
import "../../Input/CurrencyInput.js";
|
|
@@ -38,11 +43,9 @@ import "../../Forms/SalesforceFieldsForm.js";
|
|
|
38
43
|
import "../../LoadingIndicator/LoadingIndicator.css.js";
|
|
39
44
|
import "../../Input/RadioButton.js";
|
|
40
45
|
import "iframe-resizer";
|
|
46
|
+
import "../../Table/Table.css.js";
|
|
47
|
+
import "../../Calculators/BalanceAPYCalculator/BalanceAPYCalculator.css.js";
|
|
41
48
|
import "../../Calculators/calculator.css.js";
|
|
42
|
-
import "../../Calculators/ApyCalculator/ApyCalculator.css.js";
|
|
43
|
-
import "../../Calculators/MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js";
|
|
44
|
-
import "../../Calculators/AnnualFeeCalculator/AnnualFeeCalculator.css.js";
|
|
45
|
-
/* empty css */
|
|
46
49
|
/* empty css */
|
|
47
50
|
import "../../Carousel/index.js";
|
|
48
51
|
/* empty css */
|
|
@@ -66,7 +69,6 @@ import "../../LandingPageHeader/LandingPageHeader.css.js";
|
|
|
66
69
|
/* empty css */
|
|
67
70
|
/* empty css */
|
|
68
71
|
/* empty css */
|
|
69
|
-
import Image from "next/image.js";
|
|
70
72
|
import Link from "next/link.js";
|
|
71
73
|
/* empty css */
|
|
72
74
|
import styles from "./NavBar.module.js";
|
|
@@ -75,7 +77,6 @@ import { subNavItems } from "./NavData.js";
|
|
|
75
77
|
/* empty css */
|
|
76
78
|
import "../../StepItem/StepItem.css.js";
|
|
77
79
|
import "../../StepItemSet/StepItemSet.css.js";
|
|
78
|
-
import "../../Table/Table.css.js";
|
|
79
80
|
/* empty css */
|
|
80
81
|
/* empty css */
|
|
81
82
|
/* empty css */
|
|
@@ -85,6 +86,7 @@ import "next/script.js";
|
|
|
85
86
|
import { sub_nav, dd_media } from "./SubNavbar.css.js";
|
|
86
87
|
function SubNavBar() {
|
|
87
88
|
const { pathname } = useLocation();
|
|
89
|
+
const location = useLocation();
|
|
88
90
|
const [hoveredLink, setHoveredLink] = useState(void 0);
|
|
89
91
|
const handleMouseEnter = (link) => setHoveredLink(link);
|
|
90
92
|
const handleMouseLeave = () => setHoveredLink(void 0);
|
|
@@ -92,6 +94,7 @@ function SubNavBar() {
|
|
|
92
94
|
const [showNavbar, setShowNavbar] = useState(false);
|
|
93
95
|
const support = subNavItems.support;
|
|
94
96
|
const about = subNavItems.about;
|
|
97
|
+
const isHomepage = location.pathname === "/";
|
|
95
98
|
useEffect(() => {
|
|
96
99
|
setShowNavbar(
|
|
97
100
|
() => [
|
|
@@ -105,7 +108,7 @@ function SubNavBar() {
|
|
|
105
108
|
}, [pathname]);
|
|
106
109
|
return showNavbar ? /* @__PURE__ */ jsx("div", { className: `${styles.sub_nav} ${sub_nav} ${styles.desktop_only}`, children: /* @__PURE__ */ jsx("div", { className: styles.wrapper, children: /* @__PURE__ */ jsxs("div", { className: styles.header_sub_row, children: [
|
|
107
110
|
/* @__PURE__ */ jsx("nav", { children: /* @__PURE__ */ jsxs("ul", { className: "list_unstyled flex_row middle", children: [
|
|
108
|
-
pathname?.includes("/personal") && /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
111
|
+
(pathname?.includes("/personal") || isHomepage) && /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
109
112
|
/* @__PURE__ */ jsx("li", { className: styles.sub_nav_link, children: /* @__PURE__ */ jsxs(
|
|
110
113
|
"a",
|
|
111
114
|
{
|
|
@@ -51,7 +51,7 @@ function NavBar() {
|
|
|
51
51
|
/* @__PURE__ */ jsx("div", { className: `${styles.header} bg_white`, children: /* @__PURE__ */ jsx("div", { className: styles.wrapper, children: /* @__PURE__ */ jsxs("div", { className: `${styles.header_main_row} flex_row between middle`, children: [
|
|
52
52
|
/* @__PURE__ */ jsx("div", { className: `${styles.desktop_only} flex_row middle`, children: /* @__PURE__ */ jsxs("div", { className: `${styles.main_nav} flex_row middle`, children: [
|
|
53
53
|
/* @__PURE__ */ jsx("div", { className: styles.logo_wrap, children: /* @__PURE__ */ jsx(
|
|
54
|
-
|
|
54
|
+
"a",
|
|
55
55
|
{
|
|
56
56
|
href: "/",
|
|
57
57
|
"aria-label": "return to axos advisor services homepage",
|
|
@@ -21,8 +21,13 @@ import "../ArticlesSet/ArticlesSet.css.js";
|
|
|
21
21
|
/* empty css */
|
|
22
22
|
/* empty css */
|
|
23
23
|
/* empty css */
|
|
24
|
+
import "next/image.js";
|
|
24
25
|
import { header_section } from "../IconBillboard/IconBillboard.css.js";
|
|
25
26
|
/* empty css */
|
|
27
|
+
import "../Calculators/AnnualFeeCalculator/AnnualFeeCalculator.css.js";
|
|
28
|
+
import "../Calculators/ApyCalculator/ApyCalculator.css.js";
|
|
29
|
+
/* empty css */
|
|
30
|
+
import "../Calculators/MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js";
|
|
26
31
|
import "@hookform/resolvers/zod";
|
|
27
32
|
import "../Input/Checkbox.js";
|
|
28
33
|
import "../Input/CurrencyInput.js";
|
|
@@ -38,11 +43,9 @@ import "../Forms/SalesforceFieldsForm.js";
|
|
|
38
43
|
import "../LoadingIndicator/LoadingIndicator.css.js";
|
|
39
44
|
import "../Input/RadioButton.js";
|
|
40
45
|
import "iframe-resizer";
|
|
46
|
+
import "../Table/Table.css.js";
|
|
47
|
+
import "../Calculators/BalanceAPYCalculator/BalanceAPYCalculator.css.js";
|
|
41
48
|
import "../Calculators/calculator.css.js";
|
|
42
|
-
import "../Calculators/ApyCalculator/ApyCalculator.css.js";
|
|
43
|
-
import "../Calculators/MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js";
|
|
44
|
-
import "../Calculators/AnnualFeeCalculator/AnnualFeeCalculator.css.js";
|
|
45
|
-
/* empty css */
|
|
46
49
|
/* empty css */
|
|
47
50
|
import "../Carousel/index.js";
|
|
48
51
|
/* empty css */
|
|
@@ -65,7 +68,6 @@ import "../Chevron/Chevron.css.js";
|
|
|
65
68
|
/* empty css */
|
|
66
69
|
/* empty css */
|
|
67
70
|
/* empty css */
|
|
68
|
-
import "next/image.js";
|
|
69
71
|
import "next/link.js";
|
|
70
72
|
/* empty css */
|
|
71
73
|
/* empty css */
|
|
@@ -73,7 +75,6 @@ import "next/link.js";
|
|
|
73
75
|
/* empty css */
|
|
74
76
|
import "../StepItem/StepItem.css.js";
|
|
75
77
|
import "../StepItemSet/StepItemSet.css.js";
|
|
76
|
-
import "../Table/Table.css.js";
|
|
77
78
|
/* empty css */
|
|
78
79
|
/* empty css */
|
|
79
80
|
/* empty css */
|
package/dist/Table/Table.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { PropsWithChildren } from 'react';
|
|
|
2
2
|
import { CellProps, RowProps, TableContainerProps, TableProps } from './Table.interface';
|
|
3
3
|
|
|
4
4
|
export declare const TableContainer: ({ tableTitle, tableBody, tableFooter, tableType, tableDescription, internalName, id, }: TableContainerProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
-
export declare const Table: ({ variant, children, highlight, tableType, alternateColorRows, }: TableProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
export declare const Table: ({ variant, children, highlight, tableType, alternateColorRows, style, className, }: TableProps) => import("react/jsx-runtime").JSX.Element;
|
|
6
6
|
export declare const TableRow: ({ children, ...props }: RowProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
7
|
export declare const TableHead: ({ children }: PropsWithChildren) => import("react/jsx-runtime").JSX.Element;
|
|
8
8
|
export declare const TableBody: ({ children }: PropsWithChildren) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { HtmlHTMLAttributes, PropsWithChildren, ReactNode } from 'react';
|
|
1
|
+
import { CSSProperties, HtmlHTMLAttributes, PropsWithChildren, ReactNode } from 'react';
|
|
2
2
|
|
|
3
3
|
export interface RowProps extends HtmlHTMLAttributes<HTMLTableRowElement>, PropsWithChildren {
|
|
4
4
|
}
|
|
@@ -12,13 +12,15 @@ export interface TableProps extends PropsWithChildren {
|
|
|
12
12
|
highlight?: "First Row" | "Last Row" | "First and Last Row" | undefined;
|
|
13
13
|
tableType?: "Standard" | "Rate";
|
|
14
14
|
alternateColorRows?: boolean;
|
|
15
|
+
style?: CSSProperties;
|
|
16
|
+
className?: string;
|
|
15
17
|
}
|
|
16
18
|
export interface TableContainerProps extends PropsWithChildren {
|
|
17
19
|
id?: string;
|
|
18
20
|
variant: string;
|
|
19
|
-
tableTitle
|
|
21
|
+
tableTitle?: ReactNode | string;
|
|
20
22
|
tableBody?: ReactNode | string;
|
|
21
|
-
tableFooter
|
|
23
|
+
tableFooter?: ReactNode | string;
|
|
22
24
|
tableType?: string;
|
|
23
25
|
tableDescription?: ReactNode | string;
|
|
24
26
|
internalName?: string;
|
package/dist/Table/Table.js
CHANGED
|
@@ -33,13 +33,21 @@ const Table = ({
|
|
|
33
33
|
children,
|
|
34
34
|
highlight,
|
|
35
35
|
tableType = "Standard",
|
|
36
|
-
alternateColorRows = false
|
|
36
|
+
alternateColorRows = false,
|
|
37
|
+
style,
|
|
38
|
+
className
|
|
37
39
|
}) => {
|
|
38
40
|
return /* @__PURE__ */ jsx(
|
|
39
41
|
"div",
|
|
40
42
|
{
|
|
41
|
-
className:
|
|
42
|
-
|
|
43
|
+
className: clsx(
|
|
44
|
+
tableWrapper({ variant: getVariant(variant) }),
|
|
45
|
+
className
|
|
46
|
+
),
|
|
47
|
+
style: {
|
|
48
|
+
...tableType === "Rate" ? { width: "90%", border: "none" } : {},
|
|
49
|
+
...style
|
|
50
|
+
},
|
|
43
51
|
children: /* @__PURE__ */ jsx(
|
|
44
52
|
"table",
|
|
45
53
|
{
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
._quote_spacer_1yycp_1 {
|
|
2
|
+
line-height: 1.35;
|
|
3
|
+
margin-bottom: clamp(0.99rem, 0.7vw + 0.82rem, 1.38rem);
|
|
4
|
+
margin-inline: auto;
|
|
5
|
+
margin-top: clamp(1.88rem, 1.99vw + 1.41rem, 3rem);
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
._author_1yycp_8,
|
|
9
|
+
._quote_1yycp_1 {
|
|
10
|
+
color: #333d46;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
._author_1yycp_8 {
|
|
14
|
+
text-align: right;
|
|
15
|
+
margin-top: 18px;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
._author_1yycp_8 cite {
|
|
19
|
+
font-style: normal;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
._quote_spacer_1yycp_1 .img_fluid {
|
|
23
|
+
margin-right: 24px;
|
|
24
|
+
transform: rotateY(180deg) scaleY(-1);
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
._quote_spacer_1yycp_1 .flex_row {
|
|
28
|
+
align-items: flex-start;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
._quote_1yycp_1 p {
|
|
32
|
+
font-size: clamp(1.22rem, 0.92vw + 1rem, 1.74rem);
|
|
33
|
+
font-style: italic;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
@media (max-width: 768px) {
|
|
37
|
+
._quote_spacer_1yycp_1 .img_fluid {
|
|
38
|
+
max-width: 30px;
|
|
39
|
+
margin-right: 12px;
|
|
40
|
+
}
|
|
41
|
+
._author_1yycp_8 {
|
|
42
|
+
margin-top: 14px;
|
|
43
|
+
}
|
|
44
|
+
._quote_1yycp_1 p {
|
|
45
|
+
font-size: 18px;
|
|
46
|
+
}
|
|
47
|
+
._author_1yycp_8 cite {
|
|
48
|
+
font-size: 14px;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
@media (max-width: 500px) {
|
|
53
|
+
._author_1yycp_8 {
|
|
54
|
+
margin-top: 12px;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
@media (min-width: 604px) {
|
|
59
|
+
._quote_spacer_1yycp_1 {
|
|
60
|
+
width: min(calc(100% - 2rem), 792px);
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
@media (min-width: 1023px) {
|
|
65
|
+
._quote_1yycp_1 p {
|
|
66
|
+
font-weight: 600;
|
|
67
|
+
}
|
|
68
|
+
}
|
|
@@ -0,0 +1,200 @@
|
|
|
1
|
+
._1mjmksf0 {
|
|
2
|
+
padding: 48px 0;
|
|
3
|
+
}
|
|
4
|
+
._1mjmksf1 {
|
|
5
|
+
background: var(--_1073cm81);
|
|
6
|
+
color: var(--_1073cm82);
|
|
7
|
+
}
|
|
8
|
+
._1mjmksf2 {
|
|
9
|
+
background: var(--_1073cm88);
|
|
10
|
+
color: var(--_1073cm89);
|
|
11
|
+
}
|
|
12
|
+
._1mjmksf3 {
|
|
13
|
+
background: var(--_1073cm8f);
|
|
14
|
+
color: var(--_1073cm8g);
|
|
15
|
+
}
|
|
16
|
+
._1mjmksf4 {
|
|
17
|
+
background: var(--_1073cm8m);
|
|
18
|
+
color: var(--_1073cm8n);
|
|
19
|
+
}
|
|
20
|
+
._1mjmksf5 {
|
|
21
|
+
padding: 64px;
|
|
22
|
+
margin: 32px 0;
|
|
23
|
+
background: #F4F4F4;
|
|
24
|
+
color: #4A5560;
|
|
25
|
+
}
|
|
26
|
+
._1mjmksf6 {
|
|
27
|
+
display: inline-flex;
|
|
28
|
+
background-color: #FFFFFF;
|
|
29
|
+
border-radius: 1rem;
|
|
30
|
+
}
|
|
31
|
+
._1mjmksf7 {
|
|
32
|
+
align-items: center;
|
|
33
|
+
color: #333d46;
|
|
34
|
+
display: flex;
|
|
35
|
+
font-size: 21px;
|
|
36
|
+
padding: 0 1.5rem;
|
|
37
|
+
}
|
|
38
|
+
._1mjmksf8 {
|
|
39
|
+
font-weight: 500;
|
|
40
|
+
margin-bottom: 0;
|
|
41
|
+
}
|
|
42
|
+
._1mjmksf9 {
|
|
43
|
+
align-self: stretch;
|
|
44
|
+
border: 0;
|
|
45
|
+
max-width: 193px;
|
|
46
|
+
outline: 0;
|
|
47
|
+
padding-left: 8px;
|
|
48
|
+
overflow: visible;
|
|
49
|
+
font-size: 100%;
|
|
50
|
+
line-height: 1.15;
|
|
51
|
+
margin: 0;
|
|
52
|
+
}
|
|
53
|
+
._1mjmksfb {
|
|
54
|
+
display: none;
|
|
55
|
+
}
|
|
56
|
+
._1mjmksfc {
|
|
57
|
+
border-bottom-left-radius: 0;
|
|
58
|
+
border-top-left-radius: 0;
|
|
59
|
+
font-weight: 600;
|
|
60
|
+
font-size: 20px;
|
|
61
|
+
line-height: 1.4;
|
|
62
|
+
padding: 15px;
|
|
63
|
+
background-color: var(--_1073cm86);
|
|
64
|
+
color: #FFFFFF;
|
|
65
|
+
}
|
|
66
|
+
._1mjmksfd {
|
|
67
|
+
letter-spacing: 0.2px;
|
|
68
|
+
line-height: 1.44;
|
|
69
|
+
margin-bottom: 0;
|
|
70
|
+
}
|
|
71
|
+
._1mjmksfd small {
|
|
72
|
+
position: relative;
|
|
73
|
+
left: 338px;
|
|
74
|
+
margin-top: 7px;
|
|
75
|
+
font-size: 12px;
|
|
76
|
+
}
|
|
77
|
+
._1mjmksfe {
|
|
78
|
+
color: #d0021b;
|
|
79
|
+
}
|
|
80
|
+
._1mjmksff {
|
|
81
|
+
padding-bottom: 32px;
|
|
82
|
+
}
|
|
83
|
+
._1mjmksfg {
|
|
84
|
+
margin-bottom: 32px;
|
|
85
|
+
}
|
|
86
|
+
._1mjmksfh {
|
|
87
|
+
font-family: var(--header-font-family);
|
|
88
|
+
}
|
|
89
|
+
._1073cm80 ._1mjmksfi {
|
|
90
|
+
-webkit-background-clip: text;
|
|
91
|
+
background-image: var(--_1073cm84);
|
|
92
|
+
-webkit-text-fill-color: transparent;
|
|
93
|
+
text-shadow: 0px 0px #00000000;
|
|
94
|
+
}
|
|
95
|
+
._1es6o1h0 ._1mjmksfi {
|
|
96
|
+
color: var(--_1073cm83);
|
|
97
|
+
}
|
|
98
|
+
._1073cm80 ._1mjmksfj {
|
|
99
|
+
-webkit-background-clip: text;
|
|
100
|
+
background-image: var(--_1073cm8b);
|
|
101
|
+
-webkit-text-fill-color: transparent;
|
|
102
|
+
text-shadow: 0px 0px #00000000;
|
|
103
|
+
}
|
|
104
|
+
._1es6o1h0 ._1mjmksfj {
|
|
105
|
+
color: var(--_1073cm8a);
|
|
106
|
+
}
|
|
107
|
+
._1mjmksfk {
|
|
108
|
+
color: var(--_1073cm8h);
|
|
109
|
+
}
|
|
110
|
+
._1mjmksfl {
|
|
111
|
+
color: var(--_1073cm8o);
|
|
112
|
+
}
|
|
113
|
+
._1mjmksfm {
|
|
114
|
+
margin-inline: auto;
|
|
115
|
+
}
|
|
116
|
+
._1mjmksfn {
|
|
117
|
+
margin-top: 1rem;
|
|
118
|
+
}
|
|
119
|
+
._1mjmksfo {
|
|
120
|
+
color: var(--_1073cm82);
|
|
121
|
+
}
|
|
122
|
+
._1mjmksfp {
|
|
123
|
+
color: var(--_1073cm89);
|
|
124
|
+
}
|
|
125
|
+
._1mjmksfq {
|
|
126
|
+
color: var(--_1073cm8g);
|
|
127
|
+
}
|
|
128
|
+
._1mjmksfr {
|
|
129
|
+
color: var(--_1073cm8n);
|
|
130
|
+
}
|
|
131
|
+
._1mjmksfs {
|
|
132
|
+
margin-top: 16px;
|
|
133
|
+
}
|
|
134
|
+
._1mjmksft {
|
|
135
|
+
color: var(--_1073cm82);
|
|
136
|
+
}
|
|
137
|
+
._1mjmksfu {
|
|
138
|
+
color: var(--_1073cm89);
|
|
139
|
+
}
|
|
140
|
+
._1mjmksfv {
|
|
141
|
+
color: var(--_1073cm8g);
|
|
142
|
+
}
|
|
143
|
+
._1mjmksfw {
|
|
144
|
+
color: var(--_1073cm8n);
|
|
145
|
+
}
|
|
146
|
+
@media screen and (max-width: 603px) {
|
|
147
|
+
._1mjmksf5 {
|
|
148
|
+
padding: 30px 14px;
|
|
149
|
+
}
|
|
150
|
+
._1mjmksf6 {
|
|
151
|
+
flex-direction: column;
|
|
152
|
+
align-items: center;
|
|
153
|
+
display: flex;
|
|
154
|
+
background-color: transparent;
|
|
155
|
+
}
|
|
156
|
+
._1mjmksf9 {
|
|
157
|
+
border-radius: 8px;
|
|
158
|
+
margin-left: 0;
|
|
159
|
+
padding: 7px 15px;
|
|
160
|
+
text-align: center;
|
|
161
|
+
margin-top: 12px;
|
|
162
|
+
position: relative;
|
|
163
|
+
}
|
|
164
|
+
._1mjmksfa {
|
|
165
|
+
display: none;
|
|
166
|
+
}
|
|
167
|
+
._1mjmksfb {
|
|
168
|
+
display: block;
|
|
169
|
+
}
|
|
170
|
+
._1mjmksfd {
|
|
171
|
+
text-align: center;
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
@media screen and (max-width:603px) {
|
|
175
|
+
._1mjmksf7 {
|
|
176
|
+
flex-direction: column;
|
|
177
|
+
}
|
|
178
|
+
._1mjmksfc {
|
|
179
|
+
font-weight: 700;
|
|
180
|
+
font-size: 18px;
|
|
181
|
+
border-radius: 8px;
|
|
182
|
+
margin-top: 20px;
|
|
183
|
+
padding: 5px 36px;
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
@media screen and (max-width: 769px) {
|
|
187
|
+
._1mjmksf9 {
|
|
188
|
+
max-width: 145px;
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
@media screen and (max-width: 769px) {
|
|
192
|
+
._1mjmksfd small {
|
|
193
|
+
left: 290px;
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
@media screen and (max-width: 603px) {
|
|
197
|
+
._1mjmksfd small {
|
|
198
|
+
left: 0;
|
|
199
|
+
}
|
|
200
|
+
}
|
package/dist/main.d.ts
CHANGED
package/dist/main.js
CHANGED
|
@@ -12,6 +12,7 @@ import { awards_row, awards_section } from "./AwardsBanner/AwardsBanner.css.js";
|
|
|
12
12
|
import { AwardsBanner } from "./AwardsBanner/AwardsBanner.js";
|
|
13
13
|
import { award_company, award_item, award_name } from "./AwardsItem/AwardsItem.css.js";
|
|
14
14
|
import { AwardsItem } from "./AwardsItem/AwardsItem.js";
|
|
15
|
+
import { Blockquote } from "./Blockquote/index.js";
|
|
15
16
|
import { BulletItem } from "./BulletItem/BulletItem.js";
|
|
16
17
|
import { Button } from "./Button/Button.js";
|
|
17
18
|
import { button } from "./Button/Button.css.js";
|
|
@@ -165,6 +166,7 @@ export {
|
|
|
165
166
|
AxosFooterSiteMap,
|
|
166
167
|
default7 as AxosX,
|
|
167
168
|
default8 as AxosXBlue,
|
|
169
|
+
Blockquote,
|
|
168
170
|
BulletItem,
|
|
169
171
|
Button,
|
|
170
172
|
Calculator,
|