@axos-web-dev/shared-components 0.0.10 → 0.0.12
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/ApyCalculator/index.js +3 -2
- package/dist/Button/Button.d.ts +24 -0
- package/dist/Button/Button.js +31 -0
- package/dist/Button/GoBackButton.d.ts +3 -0
- package/dist/Button/GoBackButton.js +15 -0
- package/dist/Button/index.d.ts +3 -21
- package/dist/Button/index.js +5 -20
- package/dist/CallToActionBar/index.js +30 -36
- package/dist/CollectInformationAlert/index.js +4 -1
- package/dist/ContentBanner/index.js +4 -1
- package/dist/Forms/ScheduleCall.d.ts +2 -1
- package/dist/Forms/ScheduleCall.js +9 -11
- package/dist/HeroBanner/index.js +6 -5
- package/dist/IconBillboard/IconBillboard.d.ts +3 -1
- package/dist/IconBillboard/IconBillboard.interface.d.ts +2 -0
- package/dist/IconBillboard/IconBillboard.js +49 -34
- package/dist/IconBillboard/IconBillboardSet.js +50 -56
- package/dist/ImageBillboard/ImageBillboard.css.d.ts +1 -0
- package/dist/ImageBillboard/ImageBillboard.interface.d.ts +3 -0
- package/dist/ImageBillboard/ImageBillboard.js +4 -1
- package/dist/ImageBillboard/ImageBillboardSet.d.ts +1 -1
- package/dist/ImageBillboard/ImageBillboardSet.js +12 -3
- package/dist/Input/Input.css.js +5 -0
- package/dist/MainHTML/index.d.ts +1 -1
- package/dist/Modal/index.js +4 -2
- package/dist/NavigationMenu/AxosAdvisor/NavBar.css.d.ts +1 -0
- package/dist/NavigationMenu/AxosAdvisor/NavBar.css.js +7 -0
- package/dist/NavigationMenu/AxosAdvisor/NavBar.module.js +52 -52
- package/dist/NavigationMenu/AxosAdvisor/NavData.d.ts +4 -0
- package/dist/NavigationMenu/AxosAdvisor/NavData.js +10 -0
- package/dist/NavigationMenu/AxosAdvisor/SubNavBar.js +46 -30
- package/dist/NavigationMenu/AxosAdvisor/SubNavbar.css.d.ts +4 -0
- package/dist/NavigationMenu/AxosAdvisor/SubNavbar.css.js +13 -0
- package/dist/NavigationMenu/AxosAdvisor/index.js +184 -142
- package/dist/NavigationMenu/AxosFiduciary/NavBar.module.js +40 -40
- package/dist/NavigationMenu/AxosFiduciary/NavData.d.ts +4 -0
- package/dist/NavigationMenu/AxosFiduciary/NavData.js +9 -0
- package/dist/NavigationMenu/AxosFiduciary/index.js +41 -13
- package/dist/NavigationMenu/NavItem/index.d.ts +10 -0
- package/dist/NavigationMenu/NavItem/index.js +25 -0
- package/dist/SetContainer/SetContainer.js +1 -0
- package/dist/Table/Table.css.d.ts +19 -6
- package/dist/Table/Table.css.js +5 -1
- package/dist/Table/Table.d.ts +3 -3
- package/dist/Table/Table.interface.d.ts +2 -0
- package/dist/Table/Table.js +8 -5
- package/dist/Table/index.js +3 -1
- package/dist/VideoTile/VideoTile.js +2 -2
- package/dist/assets/Button/Button.css +3 -0
- package/dist/assets/CallToActionBar/CallToActionBar.css +19 -8
- package/dist/assets/ContentBanner/ContentBanner.css +2 -0
- package/dist/assets/Forms/Forms.css +7 -5
- package/dist/assets/HeroBanner/HeroBanner.css +3 -0
- package/dist/assets/IconBillboard/IconBillboard.css +8 -2
- package/dist/assets/ImageBillboard/ImageBillboard.css +29 -1
- package/dist/assets/Input/Input.css +5 -1
- package/dist/assets/NavigationMenu/AxosAdvisor/NavBar.css +5 -0
- package/dist/assets/NavigationMenu/AxosAdvisor/NavBar.css.css +125 -122
- package/dist/assets/NavigationMenu/AxosAdvisor/SubNavbar.css +17 -0
- package/dist/assets/NavigationMenu/AxosFiduciary/NavBar.css.css +82 -82
- package/dist/assets/SetContainer/SetContainer.css +6 -1
- package/dist/assets/Table/Table.css +61 -21
- package/dist/assets/VideoTile/VideoTile.css +1 -0
- package/dist/assets/globals.css +5 -3
- package/dist/main.js +8 -2
- package/package.json +1 -2
|
@@ -77,7 +77,7 @@ export declare const td: import("@vanilla-extract/recipes").RuntimeFn<{
|
|
|
77
77
|
selectors: {
|
|
78
78
|
"&:first-child": {
|
|
79
79
|
background: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
80
|
-
color: `var(--${string})
|
|
80
|
+
color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
81
81
|
};
|
|
82
82
|
};
|
|
83
83
|
"@media": {
|
|
@@ -96,7 +96,7 @@ export declare const td: import("@vanilla-extract/recipes").RuntimeFn<{
|
|
|
96
96
|
selectors: {
|
|
97
97
|
"&:first-child": {
|
|
98
98
|
background: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
99
|
-
color: `var(--${string})
|
|
99
|
+
color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
100
100
|
};
|
|
101
101
|
};
|
|
102
102
|
"@media": {
|
|
@@ -114,23 +114,36 @@ export declare const td: import("@vanilla-extract/recipes").RuntimeFn<{
|
|
|
114
114
|
true: {};
|
|
115
115
|
};
|
|
116
116
|
}>;
|
|
117
|
+
export declare const tableWrapper: import("@vanilla-extract/recipes").RuntimeFn<{
|
|
118
|
+
variant: {
|
|
119
|
+
primary: {
|
|
120
|
+
border: `1px solid var(--${string})` | `1px solid var(--${string}, ${string})` | `1px solid var(--${string}, ${number})`;
|
|
121
|
+
};
|
|
122
|
+
secondary: {
|
|
123
|
+
border: `1px solid var(--${string})` | `1px solid var(--${string}, ${string})` | `1px solid var(--${string}, ${number})`;
|
|
124
|
+
};
|
|
125
|
+
tertiary: {
|
|
126
|
+
border: "none";
|
|
127
|
+
};
|
|
128
|
+
quaternary: {
|
|
129
|
+
border: "none";
|
|
130
|
+
};
|
|
131
|
+
};
|
|
132
|
+
}>;
|
|
117
133
|
export declare const table: import("@vanilla-extract/recipes").RuntimeFn<{
|
|
118
134
|
variant: {
|
|
119
135
|
primary: {
|
|
120
136
|
background: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
121
|
-
border: `1px solid var(--${string})` | `1px solid var(--${string}, ${string})` | `1px solid var(--${string}, ${number})`;
|
|
122
137
|
};
|
|
123
138
|
secondary: {
|
|
124
139
|
background: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
125
|
-
border: `1px solid var(--${string})` | `1px solid var(--${string}, ${string})` | `1px solid var(--${string}, ${number})`;
|
|
126
140
|
};
|
|
127
141
|
tertiary: {
|
|
128
142
|
background: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
129
|
-
border: `1px solid var(--${string})` | `1px solid var(--${string}, ${string})` | `1px solid var(--${string}, ${number})`;
|
|
130
143
|
};
|
|
131
144
|
quaternary: {
|
|
132
145
|
background: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
133
|
-
border: `1px solid var(--${string})` | `1px solid var(--${string}, ${string})` | `1px solid var(--${string}, ${number})`;
|
|
134
146
|
};
|
|
135
147
|
};
|
|
136
148
|
}>;
|
|
149
|
+
export declare const alternate_color_rows: string;
|
package/dist/Table/Table.css.js
CHANGED
|
@@ -12,14 +12,18 @@ var headerVariants = { primary: "_1nivbwe6 _1nivbwe5", secondary: "_1nivbwe7 _1n
|
|
|
12
12
|
var bodyHeader = "_1nivbwea";
|
|
13
13
|
var th = createRuntimeFn({ defaultClassName: "_1nivbweb", variantClassNames: { variant: { primary: "_1nivbwec", secondary: "_1nivbwed", tertiary: "_1nivbwee", quaternary: "_1nivbwef" }, highlighted: { true: "_1nivbweg" } }, defaultVariants: {}, compoundVariants: [] });
|
|
14
14
|
var td = createRuntimeFn({ defaultClassName: "_1nivbweh", variantClassNames: { variant: { primary: "_1nivbwei", secondary: "_1nivbwej", tertiary: "_1nivbwek", quaternary: "_1nivbwel" }, highlighted: { true: "_1nivbwem" } }, defaultVariants: {}, compoundVariants: [[{ highlighted: true, variant: "primary" }, "_1nivbwen"], [{ highlighted: true, variant: "tertiary" }, "_1nivbweo"]] });
|
|
15
|
-
var
|
|
15
|
+
var tableWrapper = createRuntimeFn({ defaultClassName: "_1nivbwep", variantClassNames: { variant: { primary: "_1nivbweq", secondary: "_1nivbwer", tertiary: "_1nivbwes", quaternary: "_1nivbwet" } }, defaultVariants: {}, compoundVariants: [] });
|
|
16
|
+
var table = createRuntimeFn({ defaultClassName: "_1nivbweu", variantClassNames: { variant: { primary: "_1nivbwev", secondary: "_1nivbwew", tertiary: "_1nivbwex", quaternary: "_1nivbwey" } }, defaultVariants: {}, compoundVariants: [] });
|
|
17
|
+
var alternate_color_rows = "_1nivbwez";
|
|
16
18
|
export {
|
|
19
|
+
alternate_color_rows,
|
|
17
20
|
bodyHeader,
|
|
18
21
|
headerCell,
|
|
19
22
|
headerVariants,
|
|
20
23
|
highlight_first_row,
|
|
21
24
|
highlight_last_row,
|
|
22
25
|
table,
|
|
26
|
+
tableWrapper,
|
|
23
27
|
table_container,
|
|
24
28
|
table_container_text,
|
|
25
29
|
table_headline,
|
package/dist/Table/Table.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { PropsWithChildren } from "react";
|
|
2
2
|
import { CellProps, RowProps, TableContainerProps, TableProps } from "./Table.interface";
|
|
3
3
|
export declare const TableContainer: ({ tableTitle, tableBody, tableFooter, }: TableContainerProps) => import("react/jsx-runtime").JSX.Element;
|
|
4
|
-
export declare const Table: ({ variant, children, highlight, }: TableProps) => import("react/jsx-runtime").JSX.Element;
|
|
4
|
+
export declare const Table: ({ variant, children, highlight, tableType, alternateColorRows, }: TableProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
5
|
export declare const TableRow: ({ children, ...props }: RowProps) => import("react/jsx-runtime").JSX.Element;
|
|
6
6
|
export declare const TableHead: ({ children }: PropsWithChildren) => import("react/jsx-runtime").JSX.Element;
|
|
7
7
|
export declare const TableBody: ({ children }: PropsWithChildren) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -53,7 +53,7 @@ export declare const TableCell: ({ children, as, variant, highlighted, ...props
|
|
|
53
53
|
results?: number | undefined;
|
|
54
54
|
security?: string | undefined;
|
|
55
55
|
unselectable?: "on" | "off" | undefined;
|
|
56
|
-
inputMode?: "search" | "none" | "text" | "
|
|
56
|
+
inputMode?: "search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
57
57
|
is?: string | undefined;
|
|
58
58
|
"aria-activedescendant"?: string | undefined;
|
|
59
59
|
"aria-atomic"?: (boolean | "false" | "true") | undefined;
|
|
@@ -67,7 +67,7 @@ export declare const TableCell: ({ children, as, variant, highlighted, ...props
|
|
|
67
67
|
"aria-colindextext"?: string | undefined;
|
|
68
68
|
"aria-colspan"?: number | undefined;
|
|
69
69
|
"aria-controls"?: string | undefined;
|
|
70
|
-
"aria-current"?: boolean | "page" | "false" | "true" | "time" | "
|
|
70
|
+
"aria-current"?: boolean | "page" | "false" | "true" | "time" | "step" | "location" | "date" | undefined;
|
|
71
71
|
"aria-describedby"?: string | undefined;
|
|
72
72
|
"aria-description"?: string | undefined;
|
|
73
73
|
"aria-details"?: string | undefined;
|
|
@@ -9,6 +9,8 @@ export interface CellProps extends HtmlHTMLAttributes<HTMLTableCellElement>, Pro
|
|
|
9
9
|
export interface TableProps extends PropsWithChildren {
|
|
10
10
|
variant: string;
|
|
11
11
|
highlight?: "First Row" | "Last Row" | "First and Last Row" | undefined;
|
|
12
|
+
tableType?: "Standard" | "Rate";
|
|
13
|
+
alternateColorRows?: boolean;
|
|
12
14
|
}
|
|
13
15
|
export interface TableContainerProps extends PropsWithChildren {
|
|
14
16
|
variant: string;
|
package/dist/Table/Table.js
CHANGED
|
@@ -2,7 +2,7 @@ import { jsxs, jsx } from "react/jsx-runtime";
|
|
|
2
2
|
import { getVariant } from "../utils/getVariant.js";
|
|
3
3
|
import clsx from "clsx";
|
|
4
4
|
import { createElement } from "react";
|
|
5
|
-
import { table_container, table_container_text, table_headline, table, highlight_first_row, highlight_last_row, td, th } from "./Table.css.js";
|
|
5
|
+
import { table_container, table_container_text, table_headline, tableWrapper, table, highlight_first_row, highlight_last_row, alternate_color_rows, td, th } from "./Table.css.js";
|
|
6
6
|
const TableContainer = ({
|
|
7
7
|
tableTitle,
|
|
8
8
|
tableBody,
|
|
@@ -17,20 +17,23 @@ const TableContainer = ({
|
|
|
17
17
|
const Table = ({
|
|
18
18
|
variant = "primary",
|
|
19
19
|
children,
|
|
20
|
-
highlight
|
|
20
|
+
highlight,
|
|
21
|
+
tableType,
|
|
22
|
+
alternateColorRows = false
|
|
21
23
|
}) => {
|
|
22
|
-
return /* @__PURE__ */ jsx(
|
|
24
|
+
return /* @__PURE__ */ jsx("div", { className: tableWrapper({ variant: getVariant(variant) }), children: /* @__PURE__ */ jsx(
|
|
23
25
|
"table",
|
|
24
26
|
{
|
|
25
27
|
className: clsx(
|
|
26
28
|
table({ variant: getVariant(variant) }),
|
|
27
29
|
highlight === "First Row" && highlight_first_row,
|
|
28
30
|
highlight === "Last Row" && highlight_last_row,
|
|
29
|
-
highlight === "First and Last Row" && `${highlight_first_row} ${highlight_last_row}
|
|
31
|
+
highlight === "First and Last Row" && `${highlight_first_row} ${highlight_last_row}`,
|
|
32
|
+
alternateColorRows || tableType === "Rate" ? alternate_color_rows : ""
|
|
30
33
|
),
|
|
31
34
|
children
|
|
32
35
|
}
|
|
33
|
-
);
|
|
36
|
+
) });
|
|
34
37
|
};
|
|
35
38
|
const TableRow = ({ children, ...props }) => {
|
|
36
39
|
return /* @__PURE__ */ jsx("tr", { ...props, children });
|
package/dist/Table/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Table, TableBody, TableCell, TableContainer, TableHead, TableRow } from "./Table.js";
|
|
2
|
-
import { bodyHeader, headerCell, headerVariants, highlight_first_row, highlight_last_row, table, table_container, table_container_text, table_headline, td, th } from "./Table.css.js";
|
|
2
|
+
import { alternate_color_rows, bodyHeader, headerCell, headerVariants, highlight_first_row, highlight_last_row, table, tableWrapper, table_container, table_container_text, table_headline, td, th } from "./Table.css.js";
|
|
3
3
|
export {
|
|
4
4
|
Table,
|
|
5
5
|
TableBody,
|
|
@@ -7,12 +7,14 @@ export {
|
|
|
7
7
|
TableContainer,
|
|
8
8
|
TableHead,
|
|
9
9
|
TableRow,
|
|
10
|
+
alternate_color_rows,
|
|
10
11
|
bodyHeader,
|
|
11
12
|
headerCell,
|
|
12
13
|
headerVariants,
|
|
13
14
|
highlight_first_row,
|
|
14
15
|
highlight_last_row,
|
|
15
16
|
table,
|
|
17
|
+
tableWrapper,
|
|
16
18
|
table_container,
|
|
17
19
|
table_container_text,
|
|
18
20
|
table_headline,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import { jsxs,
|
|
2
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
3
3
|
import ReactMarkdown from "react-markdown";
|
|
4
4
|
import { useToggle } from "react-use";
|
|
5
5
|
import "../icons/CheckIcon/CheckIcon.css.js";
|
|
@@ -25,7 +25,7 @@ const VideoTile = ({
|
|
|
25
25
|
event.preventDefault();
|
|
26
26
|
toggle();
|
|
27
27
|
};
|
|
28
|
-
return /* @__PURE__ */ jsxs(
|
|
28
|
+
return /* @__PURE__ */ jsxs("div", { className: `flex center`, children: [
|
|
29
29
|
/* @__PURE__ */ jsx(VideoInit, {}),
|
|
30
30
|
/* @__PURE__ */ jsxs("div", { className: `${video_container} ${w_100} flex flex_col`, children: [
|
|
31
31
|
/* @__PURE__ */ jsx("h2", { className: `${mb_8} ${video_title}`, children: title ? title : null }),
|
|
@@ -99,6 +99,7 @@
|
|
|
99
99
|
background: transparent;
|
|
100
100
|
text-decoration: none;
|
|
101
101
|
color: #5E6A74;
|
|
102
|
+
border-color: transparent;
|
|
102
103
|
}
|
|
103
104
|
._13pdpuje {
|
|
104
105
|
background: #8F8F8F;
|
|
@@ -109,6 +110,7 @@
|
|
|
109
110
|
background: #8F8F8F;
|
|
110
111
|
text-decoration: none;
|
|
111
112
|
color: #FFFFFF;
|
|
113
|
+
border-color: #8F8F8F;
|
|
112
114
|
}
|
|
113
115
|
._13pdpujf {
|
|
114
116
|
background: #8F8F8F;
|
|
@@ -119,6 +121,7 @@
|
|
|
119
121
|
background: #8F8F8F;
|
|
120
122
|
text-decoration: none;
|
|
121
123
|
color: #FFFFFF;
|
|
124
|
+
border-color: #8F8F8F;
|
|
122
125
|
}
|
|
123
126
|
._13pdpujg {
|
|
124
127
|
height: 50px;
|
|
@@ -8,7 +8,6 @@
|
|
|
8
8
|
}
|
|
9
9
|
._1tdyl740 .flex {
|
|
10
10
|
align-items: center;
|
|
11
|
-
gap: 24px;
|
|
12
11
|
}
|
|
13
12
|
._1tdyl741 {
|
|
14
13
|
height: -webkit-fit-content;
|
|
@@ -54,9 +53,6 @@
|
|
|
54
53
|
position: relative;
|
|
55
54
|
top: -20px;
|
|
56
55
|
}
|
|
57
|
-
._1tdyl74d {
|
|
58
|
-
gap: 24px;
|
|
59
|
-
}
|
|
60
56
|
._1tdyl74e {
|
|
61
57
|
filter: drop-shadow(0 1px 3px rgb(255 255 255/0.4));
|
|
62
58
|
}
|
|
@@ -98,11 +94,9 @@
|
|
|
98
94
|
}
|
|
99
95
|
._1tdyl740 .flex {
|
|
100
96
|
flex-direction: column;
|
|
101
|
-
gap: 0;
|
|
102
97
|
}
|
|
103
98
|
._1tdyl74d {
|
|
104
99
|
text-align: center;
|
|
105
|
-
padding: 24px;
|
|
106
100
|
flex-direction: column;
|
|
107
101
|
}
|
|
108
102
|
._1tdyl74d p {
|
|
@@ -119,13 +113,25 @@
|
|
|
119
113
|
._1tdyl741 > img {
|
|
120
114
|
position: unset;
|
|
121
115
|
margin-top: 32px;
|
|
122
|
-
width: 375px;
|
|
123
|
-
height: 196px;
|
|
116
|
+
width: 375px !important;
|
|
117
|
+
height: 196px !important;
|
|
118
|
+
object-fit: cover;
|
|
124
119
|
}
|
|
125
120
|
._1tdyl74g {
|
|
126
121
|
justify-content: center;
|
|
127
122
|
padding: 24px;
|
|
128
123
|
}
|
|
124
|
+
._1tdyl74h {
|
|
125
|
+
margin-top: 1rem;
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
@media screen and (min-width:1024px) {
|
|
129
|
+
._1tdyl740 .flex {
|
|
130
|
+
gap: 24px;
|
|
131
|
+
}
|
|
132
|
+
._1tdyl74d {
|
|
133
|
+
gap: 24px;
|
|
134
|
+
}
|
|
129
135
|
}
|
|
130
136
|
@media screen and (max-width:510px) {
|
|
131
137
|
._1tdyl74g {
|
|
@@ -133,4 +139,9 @@
|
|
|
133
139
|
flex-direction: column;
|
|
134
140
|
margin-right: 0;
|
|
135
141
|
}
|
|
142
|
+
}
|
|
143
|
+
@media screen and (max-width: 1023px) {
|
|
144
|
+
._1tdyl746 ._1tdyl74g, ._1tdyl747 ._1tdyl74g {
|
|
145
|
+
margin-top: 0;
|
|
146
|
+
}
|
|
136
147
|
}
|
|
@@ -46,6 +46,7 @@
|
|
|
46
46
|
display: flex;
|
|
47
47
|
justify-content: center;
|
|
48
48
|
margin-top: 1.5rem;
|
|
49
|
+
gap: 48px;
|
|
49
50
|
}
|
|
50
51
|
._1bwl51gd {
|
|
51
52
|
margin-left: 48px;
|
|
@@ -57,6 +58,7 @@
|
|
|
57
58
|
}
|
|
58
59
|
._1bwl51gc {
|
|
59
60
|
flex-direction: column;
|
|
61
|
+
gap: 16px;
|
|
60
62
|
}
|
|
61
63
|
._1bwl51gd {
|
|
62
64
|
margin-top: 24px;
|
|
@@ -23,20 +23,20 @@
|
|
|
23
23
|
margin-bottom: 32px;
|
|
24
24
|
font-family: var(--header-font-family);
|
|
25
25
|
}
|
|
26
|
-
|
|
26
|
+
_1073cm80 .tfms6a7 {
|
|
27
27
|
-webkit-background-clip: text;
|
|
28
28
|
background-image: var(--_1073cm84);
|
|
29
29
|
-webkit-text-fill-color: transparent;
|
|
30
30
|
}
|
|
31
|
-
|
|
31
|
+
_1es6o1h0 .tfms6a7 {
|
|
32
32
|
color: var(--_1073cm83);
|
|
33
33
|
}
|
|
34
|
-
|
|
34
|
+
_1073cm80 .tfms6a8 {
|
|
35
35
|
-webkit-background-clip: text;
|
|
36
36
|
background-image: var(--_1073cm8b);
|
|
37
37
|
-webkit-text-fill-color: transparent;
|
|
38
38
|
}
|
|
39
|
-
|
|
39
|
+
_1es6o1h0 .tfms6a8 {
|
|
40
40
|
color: var(--_1073cm8a);
|
|
41
41
|
}
|
|
42
42
|
.tfms6a9 {
|
|
@@ -82,10 +82,12 @@
|
|
|
82
82
|
.tfms6al {
|
|
83
83
|
color: var(--_1073cm8n);
|
|
84
84
|
}
|
|
85
|
-
@media screen and (max-width:
|
|
85
|
+
@media screen and (max-width:1023px) {
|
|
86
86
|
.tfms6a0 {
|
|
87
87
|
padding-inline: 0;
|
|
88
88
|
}
|
|
89
|
+
}
|
|
90
|
+
@media screen and (max-width:480px) {
|
|
89
91
|
.tfms6ab {
|
|
90
92
|
grid-template-columns: 1fr;
|
|
91
93
|
}
|
|
@@ -30,7 +30,8 @@
|
|
|
30
30
|
}
|
|
31
31
|
._1r4ovbu7 {
|
|
32
32
|
text-align: center;
|
|
33
|
-
|
|
33
|
+
width: 48px;
|
|
34
|
+
height: 48px;
|
|
34
35
|
}
|
|
35
36
|
._1r4ovbu8 {
|
|
36
37
|
text-align: center;
|
|
@@ -118,7 +119,7 @@
|
|
|
118
119
|
._1r4ovbuo {
|
|
119
120
|
display: grid;
|
|
120
121
|
grid-template-columns: repeat( auto-fit, minmax(250px, 1fr) );
|
|
121
|
-
|
|
122
|
+
gap: 24px;
|
|
122
123
|
}
|
|
123
124
|
@media screen and (max-width: 380px) {
|
|
124
125
|
._1r4ovbuh {
|
|
@@ -127,4 +128,9 @@
|
|
|
127
128
|
._1r4ovbuh:first-child {
|
|
128
129
|
margin-bottom: 1em;
|
|
129
130
|
}
|
|
131
|
+
}
|
|
132
|
+
@media screen and (max-width: 1024px) {
|
|
133
|
+
._1r4ovbuo {
|
|
134
|
+
grid-template-columns: auto;
|
|
135
|
+
}
|
|
130
136
|
}
|
|
@@ -28,6 +28,14 @@
|
|
|
28
28
|
}
|
|
29
29
|
._18ygy9m0 ._1m7m2a7 {
|
|
30
30
|
flex-direction: column-reverse;
|
|
31
|
+
justify-content: space-between;
|
|
32
|
+
}
|
|
33
|
+
._18ygy9m0 > .billboard > div {
|
|
34
|
+
width: 100%;
|
|
35
|
+
max-width: 100%;
|
|
36
|
+
}
|
|
37
|
+
._18ygy9m0 .billboard {
|
|
38
|
+
width: 100%;
|
|
31
39
|
}
|
|
32
40
|
._1073cm80 ._1m7m2a9 {
|
|
33
41
|
-webkit-background-clip: text;
|
|
@@ -77,6 +85,13 @@
|
|
|
77
85
|
width: 100%;
|
|
78
86
|
max-width: 50%;
|
|
79
87
|
}
|
|
88
|
+
._1m7m2aj {
|
|
89
|
+
max-width: 50%;
|
|
90
|
+
width: 100%;
|
|
91
|
+
}
|
|
92
|
+
._18ygy9m0 .billboard ._1m7m2aj img {
|
|
93
|
+
max-height: 300px;
|
|
94
|
+
}
|
|
80
95
|
._1m7m2aj img {
|
|
81
96
|
vertical-align: middle;
|
|
82
97
|
align-self: flex-end;
|
|
@@ -85,10 +100,17 @@
|
|
|
85
100
|
min-height: 304px;
|
|
86
101
|
object-fit: cover;
|
|
87
102
|
aspect-ratio: 1 / 1;
|
|
88
|
-
min-width: 600px;
|
|
89
103
|
}
|
|
90
104
|
._1m7m2an {
|
|
91
105
|
padding: 32px 28px;
|
|
106
|
+
width: 100%;
|
|
107
|
+
max-width: 50%;
|
|
108
|
+
}
|
|
109
|
+
._18ygy9m0 ._1m7m2an {
|
|
110
|
+
height: 100%;
|
|
111
|
+
display: flex;
|
|
112
|
+
flex-direction: column;
|
|
113
|
+
justify-content: space-between;
|
|
92
114
|
}
|
|
93
115
|
._1m7m2ao {
|
|
94
116
|
display: flex;
|
|
@@ -119,6 +141,9 @@
|
|
|
119
141
|
._1m7m2ai > * {
|
|
120
142
|
max-width: 100%;
|
|
121
143
|
}
|
|
144
|
+
._1m7m2aj {
|
|
145
|
+
max-width: 100%;
|
|
146
|
+
}
|
|
122
147
|
._1m7m2aj img {
|
|
123
148
|
width: 100%;
|
|
124
149
|
}
|
|
@@ -126,6 +151,9 @@
|
|
|
126
151
|
display: flex;
|
|
127
152
|
flex-direction: column;
|
|
128
153
|
}
|
|
154
|
+
._1m7m2an {
|
|
155
|
+
max-width: 100%;
|
|
156
|
+
}
|
|
129
157
|
}
|
|
130
158
|
@media screen and (max-width:475px) {
|
|
131
159
|
._1m7m2am {
|
|
@@ -138,14 +138,18 @@
|
|
|
138
138
|
}
|
|
139
139
|
._18du0lam:focus-within {
|
|
140
140
|
border-width: 2px;
|
|
141
|
-
font-weight:
|
|
141
|
+
font-weight: 500;
|
|
142
142
|
color: var(--_1073cm86);
|
|
143
143
|
}
|
|
144
|
+
.tfms6a3 ._18du0lam:focus-within:has(._18du0la4) {
|
|
145
|
+
color: var(--_1073cm8g);
|
|
146
|
+
}
|
|
144
147
|
._18du0lan {
|
|
145
148
|
font-size: 12px;
|
|
146
149
|
letter-spacing: 0.2px;
|
|
147
150
|
line-height: 16px;
|
|
148
151
|
padding-inline: 16px;
|
|
152
|
+
margin-top: 4px;
|
|
149
153
|
}
|
|
150
154
|
._18du0lao {
|
|
151
155
|
color: #5E6A74;
|