@axos-web-dev/shared-components 0.0.35 → 0.0.36
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/Chevron/Chevron.interface.d.ts +4 -0
- package/dist/Chevron/index.js +29 -3
- package/dist/ExecutiveBio/ExecutiveBio.js +2 -2
- package/dist/ExecutiveBio/ExecutiveBioSet.js +2 -2
- package/dist/HeroBanner/index.js +1 -0
- package/dist/Hyperlink/index.js +4 -0
- package/dist/LandingPageHeader/LandingPageHeader.css.d.ts +52 -0
- package/dist/LandingPageHeader/LandingPageHeader.css.js +14 -0
- package/dist/LandingPageHeader/LandingPageHeader.d.ts +7 -0
- package/dist/LandingPageHeader/LandingPageHeader.js +19 -0
- package/dist/LandingPageHeader/index.d.ts +1 -0
- package/dist/LandingPageHeader/index.js +4 -0
- package/dist/Modal/Modal.js +4 -0
- package/dist/NavigationMenu/AxosFiduciary/NavBar.module.js +40 -40
- package/dist/SetContainer/SetContainer.js +4 -0
- package/dist/SocialMediaBar/SocialMediaBar.css.d.ts +2 -0
- package/dist/SocialMediaBar/SocialMediaBar.css.js +7 -0
- package/dist/SocialMediaBar/iconsRepository.d.ts +11 -0
- package/dist/SocialMediaBar/iconsRepository.js +180 -0
- package/dist/SocialMediaBar/index.d.ts +1 -0
- package/dist/SocialMediaBar/index.js +22 -0
- package/dist/StepItems/StepItems.css.d.ts +132 -0
- package/dist/StepItems/StepItems.css.js +45 -0
- package/dist/StepItems/StepItems.d.ts +3 -0
- package/dist/StepItems/StepItems.interface.d.ts +21 -0
- package/dist/StepItems/StepItems.interface.js +1 -0
- package/dist/StepItems/StepItems.js +20 -0
- package/dist/StepItems/StepItemsSet.d.ts +3 -0
- package/dist/StepItems/StepItemsSet.js +58 -0
- package/dist/StepItems/index.d.ts +4 -0
- package/dist/StepItems/index.js +26 -0
- package/dist/assets/HeroBanner/HeroBanner.css +2 -2
- package/dist/assets/LandingPageHeader/LandingPageHeader.css +49 -0
- package/dist/assets/NavigationMenu/AxosFiduciary/NavBar.css.css +83 -81
- package/dist/assets/SocialMediaBar/SocialMediaBar.css +35 -0
- package/dist/assets/StepItems/StepItems.css +275 -0
- package/dist/main.d.ts +3 -0
- package/dist/main.js +28 -0
- package/package.json +1 -1
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
export declare const bs_section: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
2
|
+
variant: {
|
|
3
|
+
primary: {
|
|
4
|
+
background: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
5
|
+
color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
6
|
+
};
|
|
7
|
+
secondary: {
|
|
8
|
+
background: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
9
|
+
color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
10
|
+
};
|
|
11
|
+
tertiary: {
|
|
12
|
+
background: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
13
|
+
color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
14
|
+
};
|
|
15
|
+
quaternary: {
|
|
16
|
+
background: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
17
|
+
color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
}>;
|
|
21
|
+
export declare const bs_wrapper: string;
|
|
22
|
+
export declare const svg_logo: string;
|
|
23
|
+
export declare const modifier: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
24
|
+
variant: {
|
|
25
|
+
primary: {
|
|
26
|
+
fill: "#1E3860";
|
|
27
|
+
};
|
|
28
|
+
secondary: {
|
|
29
|
+
fill: "#1E3860";
|
|
30
|
+
};
|
|
31
|
+
tertiary: {
|
|
32
|
+
fill: "#fff";
|
|
33
|
+
};
|
|
34
|
+
quaternary: {
|
|
35
|
+
fill: "#fff";
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
}>;
|
|
39
|
+
export declare const sec_title: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
40
|
+
variant: {
|
|
41
|
+
primary: {
|
|
42
|
+
color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
43
|
+
};
|
|
44
|
+
secondary: {
|
|
45
|
+
color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
46
|
+
};
|
|
47
|
+
tertiary: {
|
|
48
|
+
color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
49
|
+
};
|
|
50
|
+
quaternary: {
|
|
51
|
+
color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
52
|
+
};
|
|
53
|
+
};
|
|
54
|
+
}>;
|
|
55
|
+
export declare const sec_subtitle: string;
|
|
56
|
+
export declare const tablet_col: string;
|
|
57
|
+
export declare const bs_image: string;
|
|
58
|
+
export declare const steps_wrapper: string;
|
|
59
|
+
export declare const ol: string;
|
|
60
|
+
export declare const li: string;
|
|
61
|
+
export declare const line_points: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
62
|
+
variant: {
|
|
63
|
+
primary: {
|
|
64
|
+
borderColor: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
65
|
+
};
|
|
66
|
+
secondary: {
|
|
67
|
+
borderColor: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
68
|
+
};
|
|
69
|
+
tertiary: {
|
|
70
|
+
borderColor: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
71
|
+
};
|
|
72
|
+
quaternary: {
|
|
73
|
+
borderColor: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
74
|
+
};
|
|
75
|
+
};
|
|
76
|
+
}>;
|
|
77
|
+
export declare const point: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
78
|
+
variant: {
|
|
79
|
+
primary: {
|
|
80
|
+
borderColor: "#4D85B0";
|
|
81
|
+
background: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
82
|
+
};
|
|
83
|
+
secondary: {
|
|
84
|
+
borderColor: "#4D85B0";
|
|
85
|
+
background: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
86
|
+
};
|
|
87
|
+
tertiary: {
|
|
88
|
+
borderColor: "#FAA74A";
|
|
89
|
+
background: "#1E3860";
|
|
90
|
+
};
|
|
91
|
+
quaternary: {
|
|
92
|
+
borderColor: "#FAA74A";
|
|
93
|
+
background: "#1E3860";
|
|
94
|
+
};
|
|
95
|
+
};
|
|
96
|
+
}>;
|
|
97
|
+
export declare const step_num: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
98
|
+
variant: {
|
|
99
|
+
primary: {
|
|
100
|
+
color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
101
|
+
};
|
|
102
|
+
secondary: {
|
|
103
|
+
color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
104
|
+
};
|
|
105
|
+
tertiary: {
|
|
106
|
+
color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
107
|
+
};
|
|
108
|
+
quaternary: {
|
|
109
|
+
color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
110
|
+
};
|
|
111
|
+
};
|
|
112
|
+
}>;
|
|
113
|
+
export declare const bullet_details: string;
|
|
114
|
+
export declare const bs_topic: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
115
|
+
variant: {
|
|
116
|
+
primary: {
|
|
117
|
+
color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
118
|
+
};
|
|
119
|
+
secondary: {
|
|
120
|
+
color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
121
|
+
};
|
|
122
|
+
tertiary: {
|
|
123
|
+
color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
124
|
+
};
|
|
125
|
+
quaternary: {
|
|
126
|
+
color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
127
|
+
};
|
|
128
|
+
};
|
|
129
|
+
}>;
|
|
130
|
+
export declare const bs_copy: string;
|
|
131
|
+
export declare const bs_btns: string;
|
|
132
|
+
export declare const bs_add_details: string;
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
/* empty css */
|
|
2
|
+
/* empty css */
|
|
3
|
+
/* empty css */
|
|
4
|
+
/* empty css */
|
|
5
|
+
import { createRuntimeFn } from "@vanilla-extract/recipes/createRuntimeFn";
|
|
6
|
+
var bs_section = createRuntimeFn({ defaultClassName: "_1hh5tt10", variantClassNames: { variant: { primary: "_1hh5tt11", secondary: "_1hh5tt12", tertiary: "_1hh5tt13", quaternary: "_1hh5tt14" } }, defaultVariants: {}, compoundVariants: [] });
|
|
7
|
+
var bs_wrapper = "_1hh5tt15";
|
|
8
|
+
var svg_logo = "_1hh5tt16";
|
|
9
|
+
var modifier = createRuntimeFn({ defaultClassName: "_1hh5tt17", variantClassNames: { variant: { primary: "_1hh5tt18", secondary: "_1hh5tt19", tertiary: "_1hh5tt1a", quaternary: "_1hh5tt1b" } }, defaultVariants: {}, compoundVariants: [] });
|
|
10
|
+
var sec_title = createRuntimeFn({ defaultClassName: "_1hh5tt1c", variantClassNames: { variant: { primary: "_1hh5tt1d", secondary: "_1hh5tt1e", tertiary: "_1hh5tt1f", quaternary: "_1hh5tt1g" } }, defaultVariants: {}, compoundVariants: [] });
|
|
11
|
+
var sec_subtitle = "_1hh5tt1h";
|
|
12
|
+
var tablet_col = "_1hh5tt1i";
|
|
13
|
+
var bs_image = "_1hh5tt1j";
|
|
14
|
+
var steps_wrapper = "_1hh5tt1k";
|
|
15
|
+
var ol = "_1hh5tt1l";
|
|
16
|
+
var li = "_1hh5tt1m";
|
|
17
|
+
var line_points = createRuntimeFn({ defaultClassName: "_1hh5tt1n", variantClassNames: { variant: { primary: "_1hh5tt1o", secondary: "_1hh5tt1p", tertiary: "_1hh5tt1q", quaternary: "_1hh5tt1r" } }, defaultVariants: {}, compoundVariants: [] });
|
|
18
|
+
var point = createRuntimeFn({ defaultClassName: "_1hh5tt1s", variantClassNames: { variant: { primary: "_1hh5tt1t", secondary: "_1hh5tt1u", tertiary: "_1hh5tt1v", quaternary: "_1hh5tt1w" } }, defaultVariants: {}, compoundVariants: [] });
|
|
19
|
+
var step_num = createRuntimeFn({ defaultClassName: "_1hh5tt1x", variantClassNames: { variant: { primary: "_1hh5tt1y", secondary: "_1hh5tt1z", tertiary: "_1hh5tt110", quaternary: "_1hh5tt111" } }, defaultVariants: {}, compoundVariants: [] });
|
|
20
|
+
var bullet_details = "_1hh5tt112";
|
|
21
|
+
var bs_topic = createRuntimeFn({ defaultClassName: "_1hh5tt113", variantClassNames: { variant: { primary: "_1hh5tt114", secondary: "_1hh5tt115", tertiary: "_1hh5tt116", quaternary: "_1hh5tt117" } }, defaultVariants: {}, compoundVariants: [] });
|
|
22
|
+
var bs_copy = "_1hh5tt118";
|
|
23
|
+
var bs_btns = "_1hh5tt119";
|
|
24
|
+
var bs_add_details = "_1hh5tt11a";
|
|
25
|
+
export {
|
|
26
|
+
bs_add_details,
|
|
27
|
+
bs_btns,
|
|
28
|
+
bs_copy,
|
|
29
|
+
bs_image,
|
|
30
|
+
bs_section,
|
|
31
|
+
bs_topic,
|
|
32
|
+
bs_wrapper,
|
|
33
|
+
bullet_details,
|
|
34
|
+
li,
|
|
35
|
+
line_points,
|
|
36
|
+
modifier,
|
|
37
|
+
ol,
|
|
38
|
+
point,
|
|
39
|
+
sec_subtitle,
|
|
40
|
+
sec_title,
|
|
41
|
+
step_num,
|
|
42
|
+
steps_wrapper,
|
|
43
|
+
svg_logo,
|
|
44
|
+
tablet_col
|
|
45
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
import { ImageInterface } from '../IconBillboard';
|
|
3
|
+
import { QuaternaryTypes } from '../utils/variant.types';
|
|
4
|
+
import { ChevronProps } from '../Chevron/Chevron.interface';
|
|
5
|
+
|
|
6
|
+
export interface StepItemsSetProps {
|
|
7
|
+
id: string;
|
|
8
|
+
variant: QuaternaryTypes;
|
|
9
|
+
title?: ReactNode | string;
|
|
10
|
+
description?: ReactNode | string;
|
|
11
|
+
image?: ImageInterface;
|
|
12
|
+
stepItems: StepItemsProps[];
|
|
13
|
+
callToActionRow?: ChevronProps[];
|
|
14
|
+
additionalDetails?: string | ReactNode;
|
|
15
|
+
}
|
|
16
|
+
export interface StepItemsProps {
|
|
17
|
+
id: string;
|
|
18
|
+
variant: QuaternaryTypes;
|
|
19
|
+
title: ReactNode | string;
|
|
20
|
+
description: ReactNode | string;
|
|
21
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
import { getVariant } from "../utils/getVariant.js";
|
|
3
|
+
import { li, line_points, point, step_num, bullet_details, bs_topic, bs_copy } from "./StepItems.css.js";
|
|
4
|
+
const StepItems = ({ id, variant: fullVariant = "primary", title, description }) => {
|
|
5
|
+
const variant = getVariant(fullVariant);
|
|
6
|
+
let counter = 0;
|
|
7
|
+
return /* @__PURE__ */ jsxs("li", { className: `flex ${li}`, children: [
|
|
8
|
+
/* @__PURE__ */ jsx("div", { className: `${line_points({ variant })}`, children: /* @__PURE__ */ jsxs("div", { className: "flex middle", children: [
|
|
9
|
+
/* @__PURE__ */ jsx("div", { className: `${point({ variant })}`, children: " " }),
|
|
10
|
+
/* @__PURE__ */ jsx("div", { className: `flex center middle ${step_num({ variant })}`, children: ++counter })
|
|
11
|
+
] }) }),
|
|
12
|
+
/* @__PURE__ */ jsxs("div", { className: bullet_details, children: [
|
|
13
|
+
/* @__PURE__ */ jsx("span", { className: `${bs_topic({ variant })}`, role: "heading", children: title }),
|
|
14
|
+
/* @__PURE__ */ jsx("span", { className: bs_copy, children: description })
|
|
15
|
+
] })
|
|
16
|
+
] }, id);
|
|
17
|
+
};
|
|
18
|
+
export {
|
|
19
|
+
StepItems
|
|
20
|
+
};
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import { jsx, jsxs, Fragment } from "react/jsx-runtime";
|
|
2
|
+
import { Button } from "../Button/Button.js";
|
|
3
|
+
import "../Button/Button.css.js";
|
|
4
|
+
import "react";
|
|
5
|
+
import "react-use";
|
|
6
|
+
import { Chevron } from "../Chevron/index.js";
|
|
7
|
+
import { getVariant } from "../utils/getVariant.js";
|
|
8
|
+
import { bs_section, bs_wrapper, svg_logo, modifier, sec_title, sec_subtitle, tablet_col, bs_image, steps_wrapper, ol, li, line_points, point, step_num, bullet_details, bs_topic, bs_copy, bs_btns, bs_add_details } from "./StepItems.css.js";
|
|
9
|
+
const StepItemsSet = ({
|
|
10
|
+
id,
|
|
11
|
+
variant: fullVariant = "primary",
|
|
12
|
+
title,
|
|
13
|
+
description,
|
|
14
|
+
image,
|
|
15
|
+
stepItems,
|
|
16
|
+
callToActionRow,
|
|
17
|
+
additionalDetails
|
|
18
|
+
}) => {
|
|
19
|
+
const variant = getVariant(fullVariant);
|
|
20
|
+
let counter = 0;
|
|
21
|
+
return /* @__PURE__ */ jsx("section", { className: `${bs_section({ variant })}`, id: `id_${id}`, children: /* @__PURE__ */ jsxs("div", { className: `${bs_wrapper} containment`, children: [
|
|
22
|
+
/* @__PURE__ */ jsxs("div", { className: "text_center", children: [
|
|
23
|
+
/* @__PURE__ */ jsxs("svg", { className: svg_logo, xmlns: "http://www.w3.org/2000/svg", width: "40", height: "40", fill: "none", children: [
|
|
24
|
+
/* @__PURE__ */ jsx("path", { fill: "#FAA74A", d: "M4.012.513a1.726 1.726 0 0 0-2.455 0L.539 1.53a1.726 1.726 0 0 0 0 2.456L16.536 20 .539 36.014a1.726 1.726 0 0 0 0 2.456l1.018 1.017a1.726 1.726 0 0 0 2.455 0L23.464 20 4.012.513Z" }),
|
|
25
|
+
/* @__PURE__ */ jsx("path", { fill: "#1E3860", "fill-rule": "evenodd", d: "m38.443.513 1.018 1.017c.684.684.684 1.79 0 2.456L25.902 17.562l-3.473-3.473L35.988.513a1.726 1.726 0 0 1 2.455 0Zm0 38.974 1.018-1.017a1.726 1.726 0 0 0 0-2.456L25.902 22.438l-3.473 3.473 13.559 13.576a1.726 1.726 0 0 0 2.455 0Z", "clip-rule": "evenodd", className: `${modifier({ variant })}` })
|
|
26
|
+
] }),
|
|
27
|
+
/* @__PURE__ */ jsx("h2", { className: `header_1 ${sec_title({ variant })}`, children: title }),
|
|
28
|
+
/* @__PURE__ */ jsx("div", { className: sec_subtitle, children: description })
|
|
29
|
+
] }),
|
|
30
|
+
/* @__PURE__ */ jsxs("div", { className: `push_up_32 flex ${tablet_col}`, children: [
|
|
31
|
+
/* @__PURE__ */ jsx(
|
|
32
|
+
"div",
|
|
33
|
+
{
|
|
34
|
+
className: bs_image,
|
|
35
|
+
style: { backgroundImage: `url(${image == null ? void 0 : image.src})` },
|
|
36
|
+
children: " "
|
|
37
|
+
}
|
|
38
|
+
),
|
|
39
|
+
/* @__PURE__ */ jsx("div", { className: steps_wrapper, children: /* @__PURE__ */ jsx("ol", { className: ol, children: stepItems.map(({ id: id2, title: title2, description: description2 }) => /* @__PURE__ */ jsxs("li", { className: `flex ${li}`, children: [
|
|
40
|
+
/* @__PURE__ */ jsx("div", { className: `${line_points({ variant })}`, children: /* @__PURE__ */ jsxs("div", { className: "flex middle", children: [
|
|
41
|
+
/* @__PURE__ */ jsx("div", { className: `${point({ variant })}`, children: " " }),
|
|
42
|
+
/* @__PURE__ */ jsx("div", { className: `flex center middle ${step_num({ variant })}`, children: ++counter })
|
|
43
|
+
] }) }),
|
|
44
|
+
/* @__PURE__ */ jsxs("div", { className: bullet_details, children: [
|
|
45
|
+
/* @__PURE__ */ jsx("span", { className: `${bs_topic({ variant })}`, role: "heading", children: title2 }),
|
|
46
|
+
/* @__PURE__ */ jsx("span", { className: bs_copy, children: description2 })
|
|
47
|
+
] })
|
|
48
|
+
] }, id2)) }) })
|
|
49
|
+
] }),
|
|
50
|
+
callToActionRow && callToActionRow.length > 0 && /* @__PURE__ */ jsx("div", { className: `flex middle center push_up_32 text_center ${bs_btns}`, children: callToActionRow.map(
|
|
51
|
+
({ id: id2, variant: variant2, displayText, targetUrl, type }) => type === "Button" ? /* @__PURE__ */ jsx(Button, { targetUrl, color: getVariant(variant2), size: "large", rounded: "medium", children: displayText }, id2) : /* @__PURE__ */ jsx(Chevron, { targetUrl, variant: getVariant(variant2), children: displayText }, id2)
|
|
52
|
+
) }),
|
|
53
|
+
additionalDetails && /* @__PURE__ */ jsx("div", { className: "containment push_up_24", children: /* @__PURE__ */ jsx("div", { className: bs_add_details, children: /* @__PURE__ */ jsx(Fragment, { children: additionalDetails }) }) })
|
|
54
|
+
] }) });
|
|
55
|
+
};
|
|
56
|
+
export {
|
|
57
|
+
StepItemsSet
|
|
58
|
+
};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { StepItems } from "./StepItems.js";
|
|
2
|
+
import { bs_add_details, bs_btns, bs_copy, bs_image, bs_section, bs_topic, bs_wrapper, bullet_details, li, line_points, modifier, ol, point, sec_subtitle, sec_title, step_num, steps_wrapper, svg_logo, tablet_col } from "./StepItems.css.js";
|
|
3
|
+
import { StepItemsSet } from "./StepItemsSet.js";
|
|
4
|
+
export {
|
|
5
|
+
StepItems,
|
|
6
|
+
StepItemsSet,
|
|
7
|
+
bs_add_details,
|
|
8
|
+
bs_btns,
|
|
9
|
+
bs_copy,
|
|
10
|
+
bs_image,
|
|
11
|
+
bs_section,
|
|
12
|
+
bs_topic,
|
|
13
|
+
bs_wrapper,
|
|
14
|
+
bullet_details,
|
|
15
|
+
li,
|
|
16
|
+
line_points,
|
|
17
|
+
modifier,
|
|
18
|
+
ol,
|
|
19
|
+
point,
|
|
20
|
+
sec_subtitle,
|
|
21
|
+
sec_title,
|
|
22
|
+
step_num,
|
|
23
|
+
steps_wrapper,
|
|
24
|
+
svg_logo,
|
|
25
|
+
tablet_col
|
|
26
|
+
};
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
}
|
|
35
35
|
._1ye8k3fa img {
|
|
36
36
|
max-width: 604px;
|
|
37
|
-
max-height:
|
|
37
|
+
max-height: 480px;
|
|
38
38
|
object-fit: cover;
|
|
39
39
|
}
|
|
40
40
|
._1ye8k3fb {
|
|
@@ -152,7 +152,7 @@
|
|
|
152
152
|
gap: 1.5rem;
|
|
153
153
|
}
|
|
154
154
|
._1ye8k3fa {
|
|
155
|
-
min-height:
|
|
155
|
+
min-height: 480px;
|
|
156
156
|
_1ye8k3f0 & {
|
|
157
157
|
max-width: 708px;
|
|
158
158
|
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
._1073cm80 ._1o1hxre1 {
|
|
2
|
+
background: var(--_1073cm81);
|
|
3
|
+
}
|
|
4
|
+
._1es6o1h0 ._1o1hxre1 {
|
|
5
|
+
background: var(--_1073cm81);
|
|
6
|
+
}
|
|
7
|
+
._1073cm80 ._1o1hxre2 {
|
|
8
|
+
background: var(--_1073cm81);
|
|
9
|
+
}
|
|
10
|
+
._1es6o1h0 ._1o1hxre2 {
|
|
11
|
+
background: var(--_1073cm81);
|
|
12
|
+
}
|
|
13
|
+
._1073cm80 ._1o1hxre3 {
|
|
14
|
+
background: var(--_1073cm81);
|
|
15
|
+
}
|
|
16
|
+
._1es6o1h0 ._1o1hxre3 {
|
|
17
|
+
background: var(--_1073cm81);
|
|
18
|
+
}
|
|
19
|
+
._1o1hxre4 {
|
|
20
|
+
padding: 0 24px;
|
|
21
|
+
min-height: 59px;
|
|
22
|
+
}
|
|
23
|
+
._1o1hxre5 {
|
|
24
|
+
transition: opacity 0.35s ease;
|
|
25
|
+
}
|
|
26
|
+
._1o1hxre5:hover {
|
|
27
|
+
opacity: 0.6;
|
|
28
|
+
}
|
|
29
|
+
._1o1hxre5:active {
|
|
30
|
+
opacity: 1;
|
|
31
|
+
}
|
|
32
|
+
._1073cm80 ._1o1hxre7 {
|
|
33
|
+
fill: #1e3860;
|
|
34
|
+
}
|
|
35
|
+
._1es6o1h0 ._1o1hxre7 {
|
|
36
|
+
fill: #1e3860;
|
|
37
|
+
}
|
|
38
|
+
._1073cm80 ._1o1hxre8 {
|
|
39
|
+
fill: #1e3860;
|
|
40
|
+
}
|
|
41
|
+
._1es6o1h0 ._1o1hxre8 {
|
|
42
|
+
fill: #1e3860;
|
|
43
|
+
}
|
|
44
|
+
._1073cm80 ._1o1hxre9 {
|
|
45
|
+
fill: #fff;
|
|
46
|
+
}
|
|
47
|
+
._1es6o1h0 ._1o1hxre9 {
|
|
48
|
+
fill: #fff;
|
|
49
|
+
}
|