@phillips/seldon 1.62.0 → 1.63.0
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/assets/arrowPrev.svg.js +5 -0
- package/dist/assets/chevronNext.svg.js +3 -2
- package/dist/components/Breadcrumb/Breadcrumb.d.ts +17 -1
- package/dist/components/Breadcrumb/Breadcrumb.js +39 -8
- package/dist/components/Breadcrumb/BreadcrumbItem.d.ts +13 -1
- package/dist/components/Breadcrumb/BreadcrumbItem.js +25 -16
- package/dist/index.js +113 -112
- package/dist/scss/components/Breadcrumb/_breadcrumb.scss +31 -3
- package/package.json +1 -1
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const l = (t) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("g", { id: "MASTER UI Icon Library (2024)" }, /* @__PURE__ */ e.createElement("path", { id: "Vector", fillRule: "evenodd", clipRule: "evenodd", d: "M20.1594 11.1428C20.6237 11.1428 21 11.5265 21 11.9999C21 12.4733 20.6237 12.857 20.1594 12.857L6.21796 12.857L9.82651 16.5368C10.1548 16.8715 10.1548 17.4142 9.82651 17.7489C9.49825 18.0837 8.96603 18.0837 8.63777 17.7489L3.00002 12L8.63777 6.25105C8.96603 5.91632 9.49825 5.91632 9.82651 6.25105C10.1548 6.58579 10.1548 7.1285 9.82651 7.46323L6.21815 11.1428L20.1594 11.1428Z", fill: "black" })));
|
|
3
|
+
export {
|
|
4
|
+
l as default
|
|
5
|
+
};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const l = (t) => /* @__PURE__ */ e.createElement("svg", { width: 8, height: 14, viewBox: "0 0 8 14", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M5.65778 7.08207L0.477733 12.2621C0.294674 12.4452 0.261921 12.9302 0.540867 13.2091C0.819813 13.4881 1.30483 13.4553 1.48788 13.2723L7.23313 7.52703C7.32592 7.43424 7.38009 7.26386 7.37462 7.08207C7.38009 6.90028 7.32592 6.7299 7.23313 6.63711L1.48788 0.891872C1.30483 0.708814 0.819813 0.676061 0.540867 0.955007C0.261921 1.23395 0.294674 1.71897 0.477733 1.90202L5.65778 7.08207Z", fill: "#ECEAE7" }));
|
|
2
3
|
export {
|
|
3
|
-
|
|
4
|
+
l as default
|
|
4
5
|
};
|
|
@@ -1,11 +1,27 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { BreadcrumbItemProps } from './BreadcrumbItem';
|
|
3
3
|
export interface BreadcrumbProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
4
|
+
/**
|
|
5
|
+
* Unique id for component testing
|
|
6
|
+
*/
|
|
7
|
+
id?: string;
|
|
4
8
|
/**
|
|
5
9
|
* The items to be displayed in the Breadcrumb. The items will be displayed left
|
|
6
10
|
* to right in which they are ordered in the array (0 index being the first element)
|
|
7
11
|
*/
|
|
8
12
|
items: BreadcrumbItemProps[];
|
|
13
|
+
/**
|
|
14
|
+
* Index of the item to truncate
|
|
15
|
+
*/
|
|
16
|
+
truncateIndex?: number;
|
|
17
|
+
/**
|
|
18
|
+
* Max length for truncation
|
|
19
|
+
*/
|
|
20
|
+
truncateLength?: number;
|
|
21
|
+
/**
|
|
22
|
+
* Custom element to render for the link
|
|
23
|
+
*/
|
|
24
|
+
linkElement?: React.ElementType<React.ComponentProps<'a'>>;
|
|
9
25
|
}
|
|
10
26
|
/**
|
|
11
27
|
* ## Overview
|
|
@@ -16,5 +32,5 @@ export interface BreadcrumbProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
16
32
|
*
|
|
17
33
|
* [Storybook Link](https://phillips-seldon.netlify.app/?path=/docs/components-breadcrumb--overview)
|
|
18
34
|
*/
|
|
19
|
-
declare const Breadcrumb: ({ className, items, ...props }: BreadcrumbProps) => import("react/jsx-runtime").JSX.Element;
|
|
35
|
+
declare const Breadcrumb: ({ className, items, truncateIndex, truncateLength, linkElement: CustomElement, ...props }: BreadcrumbProps) => import("react/jsx-runtime").JSX.Element;
|
|
20
36
|
export default Breadcrumb;
|
|
@@ -1,11 +1,42 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import { getCommonProps as
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
import { jsxs as h, jsx as r } from "react/jsx-runtime";
|
|
2
|
+
import { getCommonProps as f } from "../../utils/index.js";
|
|
3
|
+
import u from "../../node_modules/classnames/index.js";
|
|
4
|
+
import p from "./BreadcrumbItem.js";
|
|
5
|
+
import { SSRMediaQuery as t } from "../../providers/utils.js";
|
|
6
|
+
import N from "../../assets/arrowPrev.svg.js";
|
|
7
|
+
const M = ({
|
|
8
|
+
className: c,
|
|
9
|
+
items: e = [],
|
|
10
|
+
truncateIndex: n,
|
|
11
|
+
truncateLength: s = 10,
|
|
12
|
+
linkElement: m = "a",
|
|
13
|
+
...a
|
|
14
|
+
}) => {
|
|
15
|
+
const { className: d, ...i } = f(a, "Breadcrumb"), { id: b } = a;
|
|
16
|
+
return /* @__PURE__ */ h("nav", { "aria-label": "Breadcrumb", className: u(d, c), ...i, ...a, children: [
|
|
17
|
+
/* @__PURE__ */ r(t.Media, { lessThan: "md", children: /* @__PURE__ */ r(
|
|
18
|
+
m,
|
|
19
|
+
{
|
|
20
|
+
href: e[1].href ? e[1].href : "/",
|
|
21
|
+
className: "back-button",
|
|
22
|
+
"data-testid": `${b}-back-button`,
|
|
23
|
+
children: /* @__PURE__ */ r(N, {})
|
|
24
|
+
}
|
|
25
|
+
) }),
|
|
26
|
+
/* @__PURE__ */ r(t.Media, { greaterThanOrEqual: "md", children: /* @__PURE__ */ r("ol", { children: e.map((l, o) => /* @__PURE__ */ r(
|
|
27
|
+
p,
|
|
28
|
+
{
|
|
29
|
+
href: l.href,
|
|
30
|
+
label: l.label,
|
|
31
|
+
element: m,
|
|
32
|
+
isCurrent: e.length - 1 === o,
|
|
33
|
+
isTruncateText: n === o,
|
|
34
|
+
truncateLength: s
|
|
35
|
+
},
|
|
36
|
+
l.label
|
|
37
|
+
)) }) })
|
|
38
|
+
] });
|
|
8
39
|
};
|
|
9
40
|
export {
|
|
10
|
-
|
|
41
|
+
M as default
|
|
11
42
|
};
|
|
@@ -12,6 +12,18 @@ export interface BreadcrumbItemProps extends React.HTMLAttributes<HTMLDivElement
|
|
|
12
12
|
* Label to display in the breadcrumb
|
|
13
13
|
*/
|
|
14
14
|
label?: string;
|
|
15
|
+
/**
|
|
16
|
+
* truncate text boolean
|
|
17
|
+
* */
|
|
18
|
+
isTruncateText?: boolean;
|
|
19
|
+
/**
|
|
20
|
+
* Length to which the text should be truncated
|
|
21
|
+
* */
|
|
22
|
+
truncateLength?: number;
|
|
23
|
+
/**
|
|
24
|
+
* Custom element to render for the link
|
|
25
|
+
*/
|
|
26
|
+
element?: React.ElementType<React.ComponentProps<'a'>>;
|
|
15
27
|
}
|
|
16
|
-
declare const BreadcrumbItem: ({ className, href, label, isCurrent, ...props }: BreadcrumbItemProps) => import("react/jsx-runtime").JSX.Element;
|
|
28
|
+
declare const BreadcrumbItem: ({ className, href, label, isCurrent, isTruncateText, truncateLength, element: CustomElement, ...props }: BreadcrumbItemProps) => import("react/jsx-runtime").JSX.Element;
|
|
17
29
|
export default BreadcrumbItem;
|
|
@@ -1,23 +1,32 @@
|
|
|
1
|
-
import { jsxs as
|
|
2
|
-
import { getCommonProps as
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
const
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
1
|
+
import { jsxs as h, jsx as s } from "react/jsx-runtime";
|
|
2
|
+
import { getCommonProps as N } from "../../utils/index.js";
|
|
3
|
+
import c from "../../node_modules/classnames/index.js";
|
|
4
|
+
import g from "../../assets/chevronNext.svg.js";
|
|
5
|
+
const B = ({
|
|
6
|
+
className: m,
|
|
7
|
+
href: t,
|
|
8
|
+
label: r,
|
|
9
|
+
isCurrent: e = !1,
|
|
10
|
+
isTruncateText: n = !1,
|
|
11
|
+
truncateLength: a = 30,
|
|
12
|
+
element: f = "a",
|
|
13
|
+
...p
|
|
14
|
+
}) => {
|
|
15
|
+
const { className: o, ...l } = N(p, "Breadcrumb"), d = e ? "page" : !1, i = e ? "" : t, u = () => r && r.length > a ? `${r.slice(0, a)}...` : r;
|
|
16
|
+
return /* @__PURE__ */ h("li", { children: [
|
|
17
|
+
e ? /* @__PURE__ */ s("span", { className: c(o, m, { [`${o}--current`]: e }), children: r }) : /* @__PURE__ */ s(
|
|
18
|
+
f,
|
|
10
19
|
{
|
|
11
|
-
"aria-current":
|
|
12
|
-
className:
|
|
13
|
-
href:
|
|
14
|
-
...
|
|
15
|
-
children:
|
|
20
|
+
"aria-current": d,
|
|
21
|
+
className: c(o, m, { [`${o}--current`]: e }),
|
|
22
|
+
href: i,
|
|
23
|
+
...l,
|
|
24
|
+
children: n ? u() : r
|
|
16
25
|
}
|
|
17
26
|
),
|
|
18
|
-
|
|
27
|
+
e ? null : /* @__PURE__ */ s(g, {})
|
|
19
28
|
] });
|
|
20
29
|
};
|
|
21
30
|
export {
|
|
22
|
-
|
|
31
|
+
B as default
|
|
23
32
|
};
|
package/dist/index.js
CHANGED
|
@@ -1,123 +1,124 @@
|
|
|
1
|
-
import { PaddingTokens as
|
|
2
|
-
import { default as
|
|
3
|
-
import { default as
|
|
4
|
-
import { ButtonVariants as
|
|
5
|
-
import { default as
|
|
6
|
-
import { default as
|
|
7
|
-
import { default as
|
|
8
|
-
import { Grid as
|
|
9
|
-
import { default as
|
|
10
|
-
import { default as
|
|
11
|
-
import { default as
|
|
12
|
-
import { default as
|
|
13
|
-
import { default as
|
|
14
|
-
import { default as
|
|
15
|
-
import { default as
|
|
16
|
-
import { default as
|
|
17
|
-
import { LinkVariants as
|
|
18
|
-
import { default as
|
|
19
|
-
import { default as
|
|
20
|
-
import { default as
|
|
21
|
-
import { default as
|
|
22
|
-
import { GridItemAlign as
|
|
23
|
-
import { default as
|
|
24
|
-
import { default as
|
|
25
|
-
import { default as
|
|
26
|
-
import { default as
|
|
1
|
+
import { PaddingTokens as f, SpacingTokens as p, defaultYear as l, emailValidation as s, encodeURLSearchParams as d, findChildrenExcludingTypes as m, findChildrenOfType as u, generatePaddingClassName as i, getCommonProps as n, noOp as x, px as g, useNormalizedInputProps as c } from "./utils/index.js";
|
|
2
|
+
import { default as S } from "./pages/Page.js";
|
|
3
|
+
import { default as P } from "./components/Button/Button.js";
|
|
4
|
+
import { ButtonVariants as k } from "./components/Button/types.js";
|
|
5
|
+
import { default as b } from "./components/IconButton/IconButton.js";
|
|
6
|
+
import { default as V } from "./components/ErrorBoundary/ErrorBoundary.js";
|
|
7
|
+
import { default as h } from "./site-furniture/Footer/Footer.js";
|
|
8
|
+
import { Grid as w } from "./components/Grid/Grid.js";
|
|
9
|
+
import { default as y } from "./site-furniture/Header/Header.js";
|
|
10
|
+
import { default as G } from "./components/Navigation/Navigation.js";
|
|
11
|
+
import { default as H } from "./components/Navigation/NavigationItem/NavigationItem.js";
|
|
12
|
+
import { default as O } from "./components/Navigation/NavigationItemTrigger/NavigationItemTrigger.js";
|
|
13
|
+
import { default as U } from "./components/Navigation/NavigationList/NavigationList.js";
|
|
14
|
+
import { default as F } from "./patterns/HeroBanner/HeroBanner.js";
|
|
15
|
+
import { default as Y } from "./components/Input/Input.js";
|
|
16
|
+
import { default as q } from "./components/Link/Link.js";
|
|
17
|
+
import { LinkVariants as K } from "./components/Link/types.js";
|
|
18
|
+
import { default as X } from "./components/LinkBlock/LinkBlock.js";
|
|
19
|
+
import { default as _ } from "./components/LinkList/LinkList.js";
|
|
20
|
+
import { default as ee } from "./components/Row/Row.js";
|
|
21
|
+
import { default as re } from "./components/GridItem/GridItem.js";
|
|
22
|
+
import { GridItemAlign as ae } from "./components/GridItem/types.js";
|
|
23
|
+
import { default as pe } from "./components/Search/Search.js";
|
|
24
|
+
import { default as se } from "./components/Select/Select.js";
|
|
25
|
+
import { default as me } from "./components/SplitPanel/SplitPanel.js";
|
|
26
|
+
import { default as ie } from "./patterns/Subscribe/Subscribe.js";
|
|
27
27
|
import { SubscriptionState as xe } from "./patterns/Subscribe/types.js";
|
|
28
|
-
import { default as
|
|
29
|
-
import { default as
|
|
30
|
-
import { default as
|
|
31
|
-
import { default as
|
|
32
|
-
import { default as
|
|
33
|
-
import { default as
|
|
34
|
-
import { TextVariants as
|
|
35
|
-
import { default as
|
|
36
|
-
import { default as
|
|
37
|
-
import { default as
|
|
38
|
-
import { default as
|
|
39
|
-
import { AuthState as
|
|
40
|
-
import { SupportedLanguages as
|
|
41
|
-
import { default as
|
|
28
|
+
import { default as ce } from "./patterns/Social/Social.js";
|
|
29
|
+
import { default as Se } from "./patterns/ViewingsList/ViewingsList.js";
|
|
30
|
+
import { default as Pe } from "./components/Modal/Modal.js";
|
|
31
|
+
import { default as ke } from "./components/Drawer/Drawer.js";
|
|
32
|
+
import { default as be } from "./components/Pagination/Pagination.js";
|
|
33
|
+
import { default as Ve } from "./patterns/ViewingsList/StatefulViewingsList.js";
|
|
34
|
+
import { TextVariants as he } from "./components/Text/types.js";
|
|
35
|
+
import { default as we } from "./components/Text/Text.js";
|
|
36
|
+
import { default as ye } from "./components/Accordion/Accordion.js";
|
|
37
|
+
import { default as Ge } from "./components/Accordion/AccordionItem.js";
|
|
38
|
+
import { default as He } from "./patterns/UserManagement/UserManagement.js";
|
|
39
|
+
import { AuthState as Oe } from "./patterns/UserManagement/types.js";
|
|
40
|
+
import { SupportedLanguages as Ue } from "./types/commonTypes.js";
|
|
41
|
+
import { default as Fe } from "./components/Breadcrumb/Breadcrumb.js";
|
|
42
42
|
import "react/jsx-runtime";
|
|
43
43
|
import "./node_modules/classnames/index.js";
|
|
44
|
-
import
|
|
45
|
-
import { default as
|
|
46
|
-
import { default as
|
|
47
|
-
import { default as
|
|
48
|
-
import { default as
|
|
49
|
-
import { default as
|
|
50
|
-
import { default as
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
import { default as po } from "./components/
|
|
54
|
-
import { default as
|
|
44
|
+
import "react";
|
|
45
|
+
import { default as Ye } from "./components/Dropdown/Dropdown.js";
|
|
46
|
+
import { default as qe } from "./components/Video/Video.js";
|
|
47
|
+
import { default as Ke } from "./patterns/LanguageSelector/LanguageSelector.js";
|
|
48
|
+
import { default as Xe } from "./components/ContentPeek/ContentPeek.js";
|
|
49
|
+
import { default as _e } from "./components/Collapsible/Collapsible.js";
|
|
50
|
+
import { default as eo } from "./components/Collapsible/CollapsibleContent.js";
|
|
51
|
+
import { default as ro } from "./components/Collapsible/CollapsibleTrigger.js";
|
|
52
|
+
import { SeldonProvider as ao } from "./providers/SeldonProvider.js";
|
|
53
|
+
import { default as po } from "./components/PageContentWrapper/PageContentWrapper.js";
|
|
54
|
+
import { default as so } from "./components/Carousel/Carousel.js";
|
|
55
|
+
import { default as uo } from "./components/Carousel/CarouselContent.js";
|
|
55
56
|
import { default as no } from "./components/Carousel/CarouselItem.js";
|
|
56
|
-
import { default as
|
|
57
|
+
import { default as go } from "./components/Carousel/CarouselDots.js";
|
|
57
58
|
export {
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
59
|
+
ye as Accordion,
|
|
60
|
+
Ge as AccordionItem,
|
|
61
|
+
Oe as AuthState,
|
|
62
|
+
Fe as Breadcrumb,
|
|
63
|
+
P as Button,
|
|
64
|
+
k as ButtonVariants,
|
|
65
|
+
so as Carousel,
|
|
66
|
+
uo as CarouselContent,
|
|
67
|
+
go as CarouselDots,
|
|
67
68
|
no as CarouselItem,
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
69
|
+
_e as Collapsible,
|
|
70
|
+
eo as CollapsibleContent,
|
|
71
|
+
ro as CollapsibleTrigger,
|
|
72
|
+
Xe as ContentPeek,
|
|
73
|
+
ke as Drawer,
|
|
74
|
+
Ye as Dropdown,
|
|
75
|
+
V as ErrorBoundary,
|
|
76
|
+
h as Footer,
|
|
77
|
+
w as Grid,
|
|
78
|
+
re as GridItem,
|
|
79
|
+
ae as GridItemAlign,
|
|
80
|
+
y as Header,
|
|
81
|
+
F as HeroBanner,
|
|
82
|
+
b as IconButton,
|
|
83
|
+
Y as Input,
|
|
84
|
+
Ke as LanguageSelector,
|
|
85
|
+
q as Link,
|
|
86
|
+
X as LinkBlock,
|
|
87
|
+
_ as LinkList,
|
|
88
|
+
K as LinkVariants,
|
|
89
|
+
Pe as Modal,
|
|
90
|
+
G as Navigation,
|
|
91
|
+
H as NavigationItem,
|
|
92
|
+
O as NavigationItemTrigger,
|
|
93
|
+
U as NavigationList,
|
|
94
|
+
f as PaddingTokens,
|
|
95
|
+
S as Page,
|
|
96
|
+
po as PageContentWrapper,
|
|
97
|
+
be as Pagination,
|
|
98
|
+
ee as Row,
|
|
99
|
+
pe as Search,
|
|
100
|
+
ao as SeldonProvider,
|
|
101
|
+
se as Select,
|
|
102
|
+
ce as Social,
|
|
103
|
+
p as SpacingTokens,
|
|
104
|
+
me as SplitPanel,
|
|
105
|
+
Ve as StatefulViewingsList,
|
|
106
|
+
ie as Subscribe,
|
|
106
107
|
xe as SubscriptionState,
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
108
|
+
Ue as SupportedLanguages,
|
|
109
|
+
we as Text,
|
|
110
|
+
he as TextVariants,
|
|
111
|
+
He as UserManagement,
|
|
112
|
+
qe as Video,
|
|
113
|
+
Se as ViewingsList,
|
|
113
114
|
l as defaultYear,
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
115
|
+
s as emailValidation,
|
|
116
|
+
d as encodeURLSearchParams,
|
|
117
|
+
m as findChildrenExcludingTypes,
|
|
118
|
+
u as findChildrenOfType,
|
|
119
|
+
i as generatePaddingClassName,
|
|
119
120
|
n as getCommonProps,
|
|
120
121
|
x as noOp,
|
|
121
|
-
|
|
122
|
-
|
|
122
|
+
g as px,
|
|
123
|
+
c as useNormalizedInputProps
|
|
123
124
|
};
|
|
@@ -1,32 +1,60 @@
|
|
|
1
1
|
@use '../../allPartials' as *;
|
|
2
2
|
|
|
3
3
|
.#{$px}-breadcrumb {
|
|
4
|
-
@include text($
|
|
4
|
+
@include text($body2);
|
|
5
5
|
|
|
6
|
-
color: $
|
|
6
|
+
color: $pure-black;
|
|
7
7
|
|
|
8
8
|
@media (max-width: $breakpoint-sm) {
|
|
9
9
|
display: none;
|
|
10
10
|
}
|
|
11
11
|
|
|
12
|
+
.back-button {
|
|
13
|
+
align-items: center;
|
|
14
|
+
background-color: transparent;
|
|
15
|
+
border: none;
|
|
16
|
+
cursor: pointer;
|
|
17
|
+
display: flex;
|
|
18
|
+
height: 44px;
|
|
19
|
+
justify-content: center;
|
|
20
|
+
width: 44px;
|
|
21
|
+
|
|
22
|
+
svg {
|
|
23
|
+
height: 24px;
|
|
24
|
+
width: 24px;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
12
28
|
ol {
|
|
13
29
|
display: flex;
|
|
14
30
|
flex-direction: row;
|
|
31
|
+
padding: 0;
|
|
15
32
|
|
|
16
33
|
li {
|
|
34
|
+
align-items: center;
|
|
17
35
|
display: flex;
|
|
18
36
|
flex-direction: row;
|
|
19
37
|
|
|
38
|
+
svg {
|
|
39
|
+
height: 16px;
|
|
40
|
+
width: 16px;
|
|
41
|
+
}
|
|
42
|
+
|
|
20
43
|
a {
|
|
21
44
|
margin: $margin-sm;
|
|
22
45
|
overflow: hidden;
|
|
46
|
+
text-decoration: none;
|
|
23
47
|
text-wrap: nowrap;
|
|
24
48
|
|
|
25
49
|
&:hover {
|
|
26
|
-
color: $
|
|
50
|
+
color: $button-hover;
|
|
27
51
|
text-decoration: none;
|
|
28
52
|
}
|
|
29
53
|
}
|
|
54
|
+
|
|
55
|
+
span {
|
|
56
|
+
margin: $margin-sm;
|
|
57
|
+
}
|
|
30
58
|
}
|
|
31
59
|
}
|
|
32
60
|
|