namirasoft-site-react 1.3.62 → 1.3.63
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/Validator.js.map +1 -1
- package/dist/components/NSButton.module.css +1 -1
- package/dist/components/NSCard.module.css +2 -3
- package/dist/components/NSCopyToClipboard.js +1 -1
- package/dist/components/NSCopyToClipboard.js.map +1 -1
- package/dist/components/NSCopyToClipboard.module.css +1 -1
- package/dist/components/NSEntityBar.module.css +2 -2
- package/dist/components/NSEntityCardBackground.module.css +2 -2
- package/dist/components/NSFooter.js.map +1 -1
- package/dist/components/NSHeader.js +1 -1
- package/dist/components/NSHeader.js.map +1 -1
- package/dist/components/NSInput.module.css +1 -1
- package/dist/components/NSInputDate.js.map +1 -1
- package/dist/components/NSInputDate.module.css +1 -1
- package/dist/components/NSInputDuration.js.map +1 -1
- package/dist/components/NSInputEmail.js.map +1 -1
- package/dist/components/NSInputFloat.js.map +1 -1
- package/dist/components/NSInputIP.js.map +1 -1
- package/dist/components/NSInputInteger.js.map +1 -1
- package/dist/components/NSInputPassword.js.map +1 -1
- package/dist/components/NSInputPhone.js.map +1 -1
- package/dist/components/NSInputPrice.js.map +1 -1
- package/dist/components/NSInputSearch.js.map +1 -1
- package/dist/components/NSInputString.js.map +1 -1
- package/dist/components/NSInputText.js.map +1 -1
- package/dist/components/NSInputTime.js.map +1 -1
- package/dist/components/NSLayoutTitle.d.ts +1 -4
- package/dist/components/NSLayoutTitle.js +7 -11
- package/dist/components/NSLayoutTitle.js.map +1 -1
- package/dist/components/NSLink.d.ts +5 -0
- package/dist/components/NSLink.js +7 -0
- package/dist/components/NSLink.js.map +1 -0
- package/dist/components/{NSLinkBlue.module.css → NSLink.module.css} +3 -3
- package/dist/components/NSLinkBlue.d.ts +2 -5
- package/dist/components/NSLinkBlue.js +2 -3
- package/dist/components/NSLinkBlue.js.map +1 -1
- package/dist/components/NSLinkGreen.d.ts +2 -16
- package/dist/components/NSLinkGreen.js +3 -18
- package/dist/components/NSLinkGreen.js.map +1 -1
- package/dist/components/NSLinkRed.d.ts +2 -16
- package/dist/components/NSLinkRed.js +3 -18
- package/dist/components/NSLinkRed.js.map +1 -1
- package/dist/components/NSNotification.d.ts +2 -10
- package/dist/components/NSNotification.js +4 -20
- package/dist/components/NSNotification.js.map +1 -1
- package/dist/components/NSPagination.d.ts +1 -9
- package/dist/components/NSPagination.js +25 -33
- package/dist/components/NSPagination.js.map +1 -1
- package/dist/components/NSSelectBox.js.map +1 -1
- package/dist/components/NSSelectBox.module.css +3 -3
- package/dist/pages/NSLoginPage.d.ts +1 -4
- package/dist/pages/NSLoginPage.js +8 -11
- package/dist/pages/NSLoginPage.js.map +1 -1
- package/dist/pages/NSNotFoundPage.d.ts +1 -4
- package/dist/pages/NSNotFoundPage.js +2 -6
- package/dist/pages/NSNotFoundPage.js.map +1 -1
- package/package.json +2 -2
- package/src/components/NSButton.module.css +1 -1
- package/src/components/NSCard.module.css +2 -3
- package/src/components/NSCopyToClipboard.module.css +1 -1
- package/src/components/NSCopyToClipboard.tsx +3 -3
- package/src/components/NSEntityBar.module.css +2 -2
- package/src/components/NSEntityCardBackground.module.css +2 -2
- package/src/components/NSHeader.tsx +3 -3
- package/src/components/NSInput.module.css +1 -1
- package/src/components/NSInputDate.module.css +1 -1
- package/src/components/NSLayoutTitle.tsx +24 -30
- package/src/components/{NSLinkBlue.module.css → NSLink.module.css} +3 -3
- package/src/components/NSLink.tsx +22 -0
- package/src/components/NSLinkBlue.tsx +3 -19
- package/src/components/NSLinkGreen.tsx +3 -42
- package/src/components/NSLinkRed.tsx +3 -42
- package/src/components/NSNotification.tsx +19 -51
- package/src/components/NSPagination.tsx +56 -72
- package/src/components/NSSelectBox.module.css +3 -3
- package/src/pages/NSLoginPage.tsx +20 -24
- package/src/pages/NSNotFoundPage.tsx +7 -13
- package/dist/components/NSLinkGreen.module.css +0 -16
- package/dist/components/NSLinkRed.module.css +0 -16
- package/src/components/NSLinkGreen.module.css +0 -16
- package/src/components/NSLinkRed.module.css +0 -16
|
@@ -1,45 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
import { NSLink, NSLinkProps } from "./NSLink";
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
import React from "react";
|
|
5
|
-
import { Link } from "react-router-dom";
|
|
6
|
-
import { BaseComponentProps } from "../props/BaseComponentProps";
|
|
7
|
-
|
|
8
|
-
export interface NSLinkRedProps extends BaseComponentProps
|
|
9
|
-
{
|
|
10
|
-
title: string;
|
|
11
|
-
href: string;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
export interface NSLinkRedState
|
|
15
|
-
{
|
|
16
|
-
title: string;
|
|
17
|
-
href: string;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
export class NSLinkRed extends React.Component<NSLinkRedProps, NSLinkRedState>
|
|
3
|
+
export function NSLinkRed(props: NSLinkProps)
|
|
21
4
|
{
|
|
22
|
-
|
|
23
|
-
{
|
|
24
|
-
super(props);
|
|
25
|
-
this.state = { title: props.title, href: props.href };
|
|
26
|
-
}
|
|
27
|
-
setTitle(title: string)
|
|
28
|
-
{
|
|
29
|
-
this.setState({ title });
|
|
30
|
-
}
|
|
31
|
-
setHRef(href: string)
|
|
32
|
-
{
|
|
33
|
-
this.setState({ href });
|
|
34
|
-
}
|
|
35
|
-
override render()
|
|
36
|
-
{
|
|
37
|
-
return (
|
|
38
|
-
<Link className="text-white text-decoration-none" to={this.state.href}>
|
|
39
|
-
<div className={Style.ns_link_red}>
|
|
40
|
-
{this.state.title}
|
|
41
|
-
</div>
|
|
42
|
-
</Link>
|
|
43
|
-
)
|
|
44
|
-
}
|
|
5
|
+
return <NSLink id={props.id} classList={props.classList} style={{ ...props.style, backgroundColor: "rgb(265, 63, 63, 1)" }} title={props.title} href={props.href} target={props.target} />;
|
|
45
6
|
}
|
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
|
|
3
|
-
import React from "react";
|
|
4
1
|
import Exit from '../assets/images/close-vector.png';
|
|
5
2
|
import Styles from "./NSNotification.module.css";
|
|
6
3
|
import { BaseComponentProps } from "../props/BaseComponentProps";
|
|
@@ -9,11 +6,7 @@ export interface NSNotificationProps extends BaseComponentProps
|
|
|
9
6
|
{
|
|
10
7
|
title: string;
|
|
11
8
|
type: NSNotificationType;
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
export interface NSNotificationState
|
|
15
|
-
{
|
|
16
|
-
show: boolean;
|
|
9
|
+
onClose: () => void;
|
|
17
10
|
}
|
|
18
11
|
|
|
19
12
|
export enum NSNotificationType
|
|
@@ -25,48 +18,23 @@ export enum NSNotificationType
|
|
|
25
18
|
RED = "RED",
|
|
26
19
|
}
|
|
27
20
|
|
|
28
|
-
export
|
|
21
|
+
export function NSNotification(props: NSNotificationProps)
|
|
29
22
|
{
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
override render()
|
|
49
|
-
{
|
|
50
|
-
let className = Styles["ns_" + this.props.type.toString().toLowerCase];
|
|
51
|
-
return <>
|
|
52
|
-
{
|
|
53
|
-
this.state.show && (
|
|
54
|
-
<div id={this.props.id}
|
|
55
|
-
className={`${Styles.ns_messenger} ${className}`}
|
|
56
|
-
style={this.props.style}
|
|
57
|
-
>
|
|
58
|
-
<p className={`mb-0 ns-font-16-normal`}>{this.props.title}</p>
|
|
59
|
-
<img
|
|
60
|
-
className={Styles.ns_exit_icon}
|
|
61
|
-
src={Exit}
|
|
62
|
-
alt="exit"
|
|
63
|
-
width={32}
|
|
64
|
-
height={32}
|
|
65
|
-
onClick={() => this.handleDestroy()}
|
|
66
|
-
/>
|
|
67
|
-
</div>
|
|
68
|
-
)
|
|
69
|
-
}
|
|
70
|
-
</>
|
|
71
|
-
}
|
|
23
|
+
let className = Styles["ns_" + props.type.toString().toLowerCase];
|
|
24
|
+
return (
|
|
25
|
+
<div id={props.id}
|
|
26
|
+
className={`${Styles.ns_messenger} ${className}`}
|
|
27
|
+
style={props.style}
|
|
28
|
+
>
|
|
29
|
+
<p className={`mb-0 ns-font-16-normal`}>{props.title}</p>
|
|
30
|
+
<img
|
|
31
|
+
className={Styles.ns_exit_icon}
|
|
32
|
+
src={Exit}
|
|
33
|
+
alt="exit"
|
|
34
|
+
width={32}
|
|
35
|
+
height={32}
|
|
36
|
+
onClick={props.onClose}
|
|
37
|
+
/>
|
|
38
|
+
</div>
|
|
39
|
+
);
|
|
72
40
|
}
|
|
@@ -1,8 +1,5 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
|
|
3
1
|
import { BaseComponentProps } from '../props/BaseComponentProps';
|
|
4
2
|
import Styles from './NSPagination.module.css';
|
|
5
|
-
import { Component } from 'react';
|
|
6
3
|
|
|
7
4
|
export interface NSPaginationProps extends BaseComponentProps
|
|
8
5
|
{
|
|
@@ -10,88 +7,75 @@ export interface NSPaginationProps extends BaseComponentProps
|
|
|
10
7
|
page: number;
|
|
11
8
|
}
|
|
12
9
|
|
|
13
|
-
export
|
|
14
|
-
{
|
|
15
|
-
size: number;
|
|
16
|
-
page: number;
|
|
17
|
-
}
|
|
18
|
-
export class NSPagination extends Component<NSPaginationProps, NSPaginationState>
|
|
10
|
+
export function NSPagination(props: NSPaginationProps)
|
|
19
11
|
{
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
12
|
+
let page = props.page;
|
|
13
|
+
let size = props.size;
|
|
14
|
+
let window = 2;
|
|
15
|
+
let min = Math.max(2, page - window);
|
|
16
|
+
let max = Math.min(page + window, size - 1);
|
|
17
|
+
let arr = [];
|
|
18
|
+
let pushPage = (index: number) =>
|
|
26
19
|
{
|
|
27
|
-
|
|
28
|
-
let size = this.props.size;
|
|
29
|
-
let window = 2;
|
|
30
|
-
let min = Math.max(2, page - window);
|
|
31
|
-
let max = Math.min(page + window, size - 1);
|
|
32
|
-
let arr = [];
|
|
33
|
-
let pushPage = (index: number) =>
|
|
34
|
-
{
|
|
35
|
-
if (index == page)
|
|
36
|
-
arr.push(
|
|
37
|
-
<div className={`${Styles.ns_select_number_parent}`}>
|
|
38
|
-
<a href='#' className={`${Styles.ns_paginate_link} ${Styles.ns_select_number}`}>{index}</a>
|
|
39
|
-
</div>
|
|
40
|
-
);
|
|
41
|
-
else
|
|
42
|
-
arr.push(
|
|
43
|
-
<div>
|
|
44
|
-
<a href='#' className={`${Styles.ns_paginate_link}`}>{index}</a>
|
|
45
|
-
</div>
|
|
46
|
-
);
|
|
47
|
-
};
|
|
48
|
-
arr.push(
|
|
49
|
-
<div>
|
|
50
|
-
<a href='#'>
|
|
51
|
-
<img
|
|
52
|
-
src='https://static.namirasoft.com/icons/base/circle-chevron-left.png'
|
|
53
|
-
alt='left_vector'
|
|
54
|
-
width={32}
|
|
55
|
-
height={32}
|
|
56
|
-
/>
|
|
57
|
-
</a>
|
|
58
|
-
</div>
|
|
59
|
-
);
|
|
60
|
-
pushPage(1);
|
|
61
|
-
if (page > window * 2)
|
|
20
|
+
if (index == page)
|
|
62
21
|
arr.push(
|
|
63
|
-
<div>
|
|
64
|
-
<a href='#' className={`${Styles.ns_paginate_link}`}
|
|
22
|
+
<div className={`${Styles.ns_select_number_parent}`}>
|
|
23
|
+
<a href='#' className={`${Styles.ns_paginate_link} ${Styles.ns_select_number}`}>{index}</a>
|
|
65
24
|
</div>
|
|
66
25
|
);
|
|
67
|
-
|
|
68
|
-
pushPage(i);
|
|
69
|
-
if (page <= size - window * 2)
|
|
26
|
+
else
|
|
70
27
|
arr.push(
|
|
71
28
|
<div>
|
|
72
|
-
<a href='#' className={`${Styles.ns_paginate_link}`}
|
|
29
|
+
<a href='#' className={`${Styles.ns_paginate_link}`}>{index}</a>
|
|
73
30
|
</div>
|
|
74
31
|
);
|
|
75
|
-
|
|
32
|
+
};
|
|
33
|
+
arr.push(
|
|
34
|
+
<div>
|
|
35
|
+
<a href='#'>
|
|
36
|
+
<img
|
|
37
|
+
src='https://static.namirasoft.com/icons/base/circle-chevron-left.png'
|
|
38
|
+
alt='left_vector'
|
|
39
|
+
width={32}
|
|
40
|
+
height={32}
|
|
41
|
+
/>
|
|
42
|
+
</a>
|
|
43
|
+
</div>
|
|
44
|
+
);
|
|
45
|
+
pushPage(1);
|
|
46
|
+
if (page > window * 2)
|
|
76
47
|
arr.push(
|
|
77
48
|
<div>
|
|
78
|
-
<a href='#'>
|
|
79
|
-
<img
|
|
80
|
-
src='https://static.namirasoft.com/icons/base/circle-chevron-right.png'
|
|
81
|
-
width={32}
|
|
82
|
-
height={32}
|
|
83
|
-
alt='right_vector'
|
|
84
|
-
/>
|
|
85
|
-
</a>
|
|
49
|
+
<a href='#' className={`${Styles.ns_paginate_link}`}>...</a>
|
|
86
50
|
</div>
|
|
87
51
|
);
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
{
|
|
52
|
+
for (let i = min; i <= max; i++)
|
|
53
|
+
pushPage(i);
|
|
54
|
+
if (page <= size - window * 2)
|
|
55
|
+
arr.push(
|
|
56
|
+
<div>
|
|
57
|
+
<a href='#' className={`${Styles.ns_paginate_link}`}>...</a>
|
|
94
58
|
</div>
|
|
95
59
|
);
|
|
96
|
-
|
|
60
|
+
pushPage(size);
|
|
61
|
+
arr.push(
|
|
62
|
+
<div>
|
|
63
|
+
<a href='#'>
|
|
64
|
+
<img
|
|
65
|
+
src='https://static.namirasoft.com/icons/base/circle-chevron-right.png'
|
|
66
|
+
width={32}
|
|
67
|
+
height={32}
|
|
68
|
+
alt='right_vector'
|
|
69
|
+
/>
|
|
70
|
+
</a>
|
|
71
|
+
</div>
|
|
72
|
+
);
|
|
73
|
+
|
|
74
|
+
return (
|
|
75
|
+
<div id={props.id}
|
|
76
|
+
className={`${Styles.ns_pagination_container} ${props.classList?.join(" ")}`}
|
|
77
|
+
style={props.style}>
|
|
78
|
+
{arr.map(x => (x))}
|
|
79
|
+
</div>
|
|
80
|
+
);
|
|
97
81
|
}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { Component } from 'react';
|
|
2
1
|
import Styles from './NSLoginPage.module.css'
|
|
3
2
|
import { NSButtonGreen } from '../components/NSButtonGreen';
|
|
4
3
|
import { NSLinkBlue } from '../components/NSLinkBlue';
|
|
@@ -13,29 +12,26 @@ export interface NSLoginPageProps
|
|
|
13
12
|
onClick?: () => void;
|
|
14
13
|
}
|
|
15
14
|
|
|
16
|
-
export
|
|
15
|
+
export function NSLoginPage(props: NSLoginPageProps)
|
|
17
16
|
{
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
<div className={`${Styles.ns_logo}`}>
|
|
29
|
-
<img width={256} height={256} src={this.props.logo} alt={`${this.props.title} Logo`}></img>
|
|
30
|
-
</div>
|
|
31
|
-
<NSSpace size={NSSpaceSizeType.SMALL} />
|
|
32
|
-
<div><h1 className={`${Styles.ns_title}`}>{this.props.title}</h1></div>
|
|
33
|
-
<NSSpace size={NSSpaceSizeType.SMALL} />
|
|
34
|
-
<div className={`${Styles.ns_button}`}>
|
|
35
|
-
{button}
|
|
36
|
-
</div>
|
|
17
|
+
let button = <></>;
|
|
18
|
+
if (props.href)
|
|
19
|
+
button = <NSLinkBlue title="Login" href={props.href ?? ""} />;
|
|
20
|
+
else if (props.onClick)
|
|
21
|
+
button = <NSButtonGreen title="Login" onClick={props.onClick} />;
|
|
22
|
+
return (
|
|
23
|
+
<div style={{ backgroundImage: props.background, width: "100%", backgroundSize: "cover" }}>
|
|
24
|
+
<div className={`${Styles.ns_login_container}`} style={{ marginTop: "100px" }}>
|
|
25
|
+
<div className={`${Styles.ns_logo}`}>
|
|
26
|
+
<img width={256} height={256} src={props.logo} alt={`${props.title} Logo`}></img>
|
|
37
27
|
</div>
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
28
|
+
<NSSpace size={NSSpaceSizeType.SMALL} />
|
|
29
|
+
<div><h1 className={`${Styles.ns_title}`}>{props.title}</h1></div>
|
|
30
|
+
<NSSpace size={NSSpaceSizeType.SMALL} />
|
|
31
|
+
<div className={`${Styles.ns_button}`}>
|
|
32
|
+
{button}
|
|
33
|
+
</div>
|
|
34
|
+
</div>
|
|
35
|
+
</div >
|
|
36
|
+
);
|
|
41
37
|
}
|
|
@@ -1,18 +1,12 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
|
|
3
|
-
import { Component } from 'react';
|
|
4
1
|
import Styles from './NSNotFoundPage.module.css'
|
|
5
2
|
import { NSLinkBlue } from '../main';
|
|
6
3
|
|
|
7
|
-
export
|
|
4
|
+
export function NSNotFoundPage()
|
|
8
5
|
{
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
</>
|
|
16
|
-
);
|
|
17
|
-
}
|
|
6
|
+
return (
|
|
7
|
+
<>
|
|
8
|
+
<div className={Styles.ns_not_found_page}></div>
|
|
9
|
+
<NSLinkBlue href='/' target='_self' title='Back To Home' />``
|
|
10
|
+
</>
|
|
11
|
+
);
|
|
18
12
|
}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
.ns_link_green {
|
|
2
|
-
display: flex;
|
|
3
|
-
border-radius: 8px;
|
|
4
|
-
background-color: #06D182;
|
|
5
|
-
color: #ffffff;
|
|
6
|
-
border: 0;
|
|
7
|
-
box-shadow: inset 0 -4px 4px 0px rgb(0 0 0 / 25%);
|
|
8
|
-
font-size: 16px;
|
|
9
|
-
text-decoration: none;
|
|
10
|
-
width: 358px;
|
|
11
|
-
height: 48px;
|
|
12
|
-
text-align: center;
|
|
13
|
-
align-items: center;
|
|
14
|
-
justify-content: center;
|
|
15
|
-
font-weight: 400;
|
|
16
|
-
}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
.ns_link_red {
|
|
2
|
-
display: flex;
|
|
3
|
-
border-radius: 8px;
|
|
4
|
-
background-color: rgb(265, 63, 63, 1);
|
|
5
|
-
color: #ffffff;
|
|
6
|
-
border: 0;
|
|
7
|
-
box-shadow: inset 0 -4px 4px 0px rgb(0 0 0 / 25%);
|
|
8
|
-
font-size: 16px;
|
|
9
|
-
text-decoration: none;
|
|
10
|
-
width: 358px;
|
|
11
|
-
height: 48px;
|
|
12
|
-
text-align: center;
|
|
13
|
-
align-items: center;
|
|
14
|
-
justify-content: center;
|
|
15
|
-
font-weight: 400;
|
|
16
|
-
}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
.ns_link_green {
|
|
2
|
-
display: flex;
|
|
3
|
-
border-radius: 8px;
|
|
4
|
-
background-color: #06D182;
|
|
5
|
-
color: #ffffff;
|
|
6
|
-
border: 0;
|
|
7
|
-
box-shadow: inset 0 -4px 4px 0px rgb(0 0 0 / 25%);
|
|
8
|
-
font-size: 16px;
|
|
9
|
-
text-decoration: none;
|
|
10
|
-
width: 358px;
|
|
11
|
-
height: 48px;
|
|
12
|
-
text-align: center;
|
|
13
|
-
align-items: center;
|
|
14
|
-
justify-content: center;
|
|
15
|
-
font-weight: 400;
|
|
16
|
-
}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
.ns_link_red {
|
|
2
|
-
display: flex;
|
|
3
|
-
border-radius: 8px;
|
|
4
|
-
background-color: rgb(265, 63, 63, 1);
|
|
5
|
-
color: #ffffff;
|
|
6
|
-
border: 0;
|
|
7
|
-
box-shadow: inset 0 -4px 4px 0px rgb(0 0 0 / 25%);
|
|
8
|
-
font-size: 16px;
|
|
9
|
-
text-decoration: none;
|
|
10
|
-
width: 358px;
|
|
11
|
-
height: 48px;
|
|
12
|
-
text-align: center;
|
|
13
|
-
align-items: center;
|
|
14
|
-
justify-content: center;
|
|
15
|
-
font-weight: 400;
|
|
16
|
-
}
|