react-restyle-components 0.2.33 → 0.2.35
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/lib/index.d.ts +0 -1
- package/lib/index.js +1 -1
- package/lib/package.json +3 -3
- package/lib/src/App.js +1 -2
- package/lib/src/core-components/atoms/button/Button.stories.d.ts +4 -4
- package/lib/src/core-components/atoms/icons/icons.component.js +1 -1
- package/lib/src/core-components/atoms/tabs/tabs.component.d.ts +0 -1
- package/lib/src/core-components/atoms/tabs/tabs.component.js +5 -5
- package/lib/src/core-components/index.d.ts +0 -33
- package/lib/src/core-components/index.js +32 -33
- package/lib/src/core-components/molecules/auto-complete-filter-multiple-select-multiple-fields-display/auto-complete-filter-multiple-select-multiple-fields-display.component.js +1 -1
- package/lib/src/core-components/molecules/auto-complete-filter-single-select-multiple-fields-display/auto-complete-filter-single-select-multiple-fields-display.component.js +1 -1
- package/lib/src/core-components/molecules/auto-complete-group-by/auto-complete-group-by.component.js +1 -1
- package/lib/src/core-components/molecules/css-multiline-input/css-multiline-input.component.js +1 -1
- package/lib/src/core-utils/index.d.ts +0 -1
- package/lib/src/core-utils/index.js +0 -1
- package/lib/src/core-utils/utility.util.d.ts +1 -0
- package/lib/src/core-utils/utility.util.js +3 -0
- package/package.json +3 -3
- package/lib/src/core-utils/unit-test.utils.d.ts +0 -4
- package/lib/src/core-utils/unit-test.utils.js +0 -9
- package/lib/src/tc.css +0 -944
- /package/lib/{tc.css → src/tc.module.css} +0 -0
package/lib/index.d.ts
CHANGED
package/lib/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import './tc.css';
|
|
1
|
+
// import './tc.css';
|
|
2
2
|
export * from './src/core-components';
|
package/lib/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-restyle-components",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.34",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Easy use restyle components",
|
|
6
6
|
"author": {
|
|
@@ -48,6 +48,7 @@
|
|
|
48
48
|
"@types/react": "^18.3.11",
|
|
49
49
|
"@types/react-dom": "^18.3.0",
|
|
50
50
|
"buffer": "^6.0.3",
|
|
51
|
+
"clsx": "^2.1.1",
|
|
51
52
|
"dayjs": "^1.11.1",
|
|
52
53
|
"jest-environment-jsdom": "^29.7.0",
|
|
53
54
|
"react-colorful": "^5.6.1",
|
|
@@ -55,6 +56,7 @@
|
|
|
55
56
|
"react-icons": "^5.2.1",
|
|
56
57
|
"react-scripts": "5.0.1",
|
|
57
58
|
"reactstrap": "^9.0.2",
|
|
59
|
+
"tailwind-merge": "^2.5.5",
|
|
58
60
|
"typescript": "^4.9.5",
|
|
59
61
|
"web-vitals": "^2.1.4"
|
|
60
62
|
},
|
|
@@ -81,7 +83,6 @@
|
|
|
81
83
|
"@vitest/coverage-c8": "^0.31.4",
|
|
82
84
|
"@vitest/ui": "^0.31.4",
|
|
83
85
|
"autoprefixer": "^10.4.19",
|
|
84
|
-
"clsx": "^2.1.1",
|
|
85
86
|
"copyfiles": "^2.4.1",
|
|
86
87
|
"craco-alias": "^3.0.1",
|
|
87
88
|
"css-loader": "^7.1.2",
|
|
@@ -99,7 +100,6 @@
|
|
|
99
100
|
"storybook": "^8.0.6",
|
|
100
101
|
"storybook-multilevel-sort": "^2.0.1",
|
|
101
102
|
"style-loader": "^4.0.0",
|
|
102
|
-
"tailwind-merge": "^2.5.5",
|
|
103
103
|
"tailwindcss": "^3.4.14",
|
|
104
104
|
"ts-jest": "^29.2.5",
|
|
105
105
|
"vitest": "^0.31.4",
|
package/lib/src/App.js
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
import React, { useState } from 'react';
|
|
2
2
|
import './App.css';
|
|
3
|
-
import { Tab, Tabs
|
|
3
|
+
import { Tab, Tabs } from './core-components';
|
|
4
4
|
function App() {
|
|
5
5
|
const [color, setColor] = useState('#aabbcc');
|
|
6
6
|
return (React.createElement("div", { className: "flex flex-col gap-4 p-4" },
|
|
7
|
-
React.createElement(Button, null, "Title"),
|
|
8
7
|
React.createElement(Tabs, { options: [{ title: 'Work History' }, { title: 'Book Order' }] },
|
|
9
8
|
React.createElement(Tab, { title: "Work History" },
|
|
10
9
|
React.createElement("div", null, "Work")),
|
|
@@ -24,14 +24,14 @@ declare const meta: {
|
|
|
24
24
|
formNoValidate?: boolean | undefined;
|
|
25
25
|
formTarget?: string | undefined;
|
|
26
26
|
name?: string | undefined;
|
|
27
|
-
type?: "button" | "
|
|
27
|
+
type?: "button" | "submit" | "reset" | undefined;
|
|
28
28
|
value?: string | number | readonly string[] | undefined;
|
|
29
29
|
defaultChecked?: boolean | undefined;
|
|
30
30
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
31
31
|
suppressContentEditableWarning?: boolean | undefined;
|
|
32
32
|
suppressHydrationWarning?: boolean | undefined;
|
|
33
33
|
accessKey?: string | undefined;
|
|
34
|
-
autoCapitalize?:
|
|
34
|
+
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | (string & {}) | undefined;
|
|
35
35
|
autoFocus?: boolean | undefined;
|
|
36
36
|
contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
|
37
37
|
contextMenu?: string | undefined;
|
|
@@ -72,7 +72,7 @@ declare const meta: {
|
|
|
72
72
|
results?: number | undefined;
|
|
73
73
|
security?: string | undefined;
|
|
74
74
|
unselectable?: "off" | "on" | undefined;
|
|
75
|
-
inputMode?: "search" | "text" | "
|
|
75
|
+
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
76
76
|
is?: string | undefined;
|
|
77
77
|
"aria-activedescendant"?: string | undefined;
|
|
78
78
|
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
@@ -86,7 +86,7 @@ declare const meta: {
|
|
|
86
86
|
"aria-colindextext"?: string | undefined;
|
|
87
87
|
"aria-colspan"?: number | undefined;
|
|
88
88
|
"aria-controls"?: string | undefined;
|
|
89
|
-
"aria-current"?: boolean | "time" | "
|
|
89
|
+
"aria-current"?: boolean | "time" | "true" | "false" | "date" | "page" | "step" | "location" | undefined;
|
|
90
90
|
"aria-describedby"?: string | undefined;
|
|
91
91
|
"aria-description"?: string | undefined;
|
|
92
92
|
"aria-details"?: string | undefined;
|
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
import React, { useState } from 'react';
|
|
2
|
-
import '../../../tc.css';
|
|
2
|
+
import s from '../../../tc.module.css';
|
|
3
3
|
import { cn } from '../../../core-utils';
|
|
4
4
|
export const Tab = ({ title, children }) => {
|
|
5
|
-
return (React.createElement("div", { className:
|
|
5
|
+
return (React.createElement("div", { className: cn(s.flex), key: title }, children));
|
|
6
6
|
};
|
|
7
7
|
export const Tabs = ({ options, children }) => {
|
|
8
8
|
const [activeTab, setActiveTab] = useState(0);
|
|
9
9
|
const [selected, setSelected] = useState(options[0].title);
|
|
10
10
|
const tabs = React.Children.toArray(children).filter((child) => React.isValidElement(child) && child.type === Tab);
|
|
11
11
|
return (React.createElement(React.Fragment, null,
|
|
12
|
-
React.createElement("div", { className: cn(
|
|
13
|
-
React.createElement("div", { className:
|
|
12
|
+
React.createElement("div", { className: cn(s.flex, s['flex-col'], s['w-full']) },
|
|
13
|
+
React.createElement("div", { className: cn(s.flex, s['border-b']) }, options?.map((tab, index) => (React.createElement("button", { type: "button", key: index, className: cn(s['py-2'], s['px-4'], s['mr-1'], s['border-none'], s['rounded-t-md'], s['shadow-inner'], s['cursor-pointer'], activeTab === index && s['bg-blue-500'], activeTab === index && s['border-none'], activeTab === index && s['text-white']), onClick: () => {
|
|
14
14
|
setSelected(tab?.title);
|
|
15
15
|
!tab.inActive && setActiveTab(index);
|
|
16
16
|
}, disabled: tab.inActive }, tab.title)))),
|
|
17
|
-
React.createElement("div", { className: cn('p-2 border border-solid border-slate-600 rounded-b-md') }, options[activeTab]?.content
|
|
17
|
+
React.createElement("div", { className: cn(s['p-2'], s.border, s['border-solid'], s['border-slate-600'], s['rounded-b-md']) }, options[activeTab]?.content
|
|
18
18
|
? options[activeTab]?.content
|
|
19
19
|
: tabs[options?.findIndex((item) => item.title === selected)]))));
|
|
20
20
|
};
|
|
@@ -1,34 +1 @@
|
|
|
1
|
-
import '../tc.css';
|
|
2
|
-
import * as Form from './atoms/form/form.component';
|
|
3
|
-
export * from './atoms/button/button.component';
|
|
4
|
-
export * from './atoms/button/buttonGroup/buttonGroup.component';
|
|
5
|
-
export * from './atoms/check-box/checkBox.component';
|
|
6
|
-
export * from './atoms/date-picker/date-picker.component';
|
|
7
|
-
export * from './atoms/input/input-otp.component';
|
|
8
|
-
export * from './atoms/input/input-pin.component';
|
|
9
|
-
export * from './atoms/input/input.component';
|
|
10
|
-
export * from './atoms/input-dropdown/input-dropdown.component';
|
|
11
|
-
export * from './atoms/loader/loader.component';
|
|
12
|
-
export * from './atoms/radio/radio.component';
|
|
13
|
-
export * from './atoms/stepper/stepper.component';
|
|
14
|
-
export * from './atoms/timer/timer.component';
|
|
15
|
-
export * from './atoms/tooltip/tooltip.component';
|
|
16
|
-
export * from './atoms/icons/icons.component';
|
|
17
1
|
export * from './atoms/tabs/tabs.component';
|
|
18
|
-
export * from './atoms/grid/grid.component';
|
|
19
|
-
export * from './atoms/list/list.component';
|
|
20
|
-
export * from './atoms/pdf/pdf-images.components';
|
|
21
|
-
export * from './atoms/pdf/pdf-table.components';
|
|
22
|
-
export * from './atoms/pdf/pdf-typography.components';
|
|
23
|
-
export * from './atoms/pdf/pdf-wrapped-view.components';
|
|
24
|
-
export * from './molecules/css-multiline-input/css-multiline-input.component';
|
|
25
|
-
export * from './molecules/auto-complete-filter-multiple-select-multiple-fields-display/auto-complete-filter-multiple-select-multiple-fields-display.component';
|
|
26
|
-
export * from './molecules/auto-complete-filter-single-select-multiple-fields-display/auto-complete-filter-single-select-multiple-fields-display.component';
|
|
27
|
-
export * from './molecules/multi-select/multi-select.component';
|
|
28
|
-
export * from './molecules/multi-select-with-field/multi-select-with-field.component';
|
|
29
|
-
export * from './molecules/modal-confirm/modal-confirm.component';
|
|
30
|
-
export * from './molecules/autocomplete/autocomplete';
|
|
31
|
-
export * from './molecules/auto-complete-group-by/auto-complete-group-by.component';
|
|
32
|
-
export * from './molecules/color-picker/color-picker.component';
|
|
33
|
-
export * from './molecules/color-picker-modal/color-picker-modal.component';
|
|
34
|
-
export { Form };
|
|
@@ -1,34 +1,33 @@
|
|
|
1
|
-
import '
|
|
2
|
-
|
|
3
|
-
export * from './atoms/button/
|
|
4
|
-
export * from './atoms/
|
|
5
|
-
export * from './atoms/
|
|
6
|
-
export * from './atoms/
|
|
7
|
-
export * from './atoms/input/input-
|
|
8
|
-
export * from './atoms/input/input
|
|
9
|
-
export * from './atoms/input/input.component';
|
|
10
|
-
export * from './atoms/
|
|
11
|
-
export * from './atoms/
|
|
12
|
-
export * from './atoms/
|
|
13
|
-
export * from './atoms/
|
|
14
|
-
export * from './atoms/
|
|
15
|
-
export * from './atoms/
|
|
16
|
-
export * from './atoms/icons/icons.component';
|
|
1
|
+
// import * as Form from './atoms/form/form.component';
|
|
2
|
+
// export * from './atoms/button/button.component';
|
|
3
|
+
// export * from './atoms/button/buttonGroup/buttonGroup.component';
|
|
4
|
+
// export * from './atoms/check-box/checkBox.component';
|
|
5
|
+
// export * from './atoms/date-picker/date-picker.component';
|
|
6
|
+
// export * from './atoms/input/input-otp.component';
|
|
7
|
+
// export * from './atoms/input/input-pin.component';
|
|
8
|
+
// export * from './atoms/input/input.component';
|
|
9
|
+
// export * from './atoms/input-dropdown/input-dropdown.component';
|
|
10
|
+
// export * from './atoms/loader/loader.component';
|
|
11
|
+
// export * from './atoms/radio/radio.component';
|
|
12
|
+
// export * from './atoms/stepper/stepper.component';
|
|
13
|
+
// export * from './atoms/timer/timer.component';
|
|
14
|
+
// export * from './atoms/tooltip/tooltip.component';
|
|
15
|
+
// export * from './atoms/icons/icons.component';
|
|
17
16
|
export * from './atoms/tabs/tabs.component';
|
|
18
|
-
export * from './atoms/grid/grid.component';
|
|
19
|
-
export * from './atoms/list/list.component';
|
|
20
|
-
export * from './atoms/pdf/pdf-images.components';
|
|
21
|
-
export * from './atoms/pdf/pdf-table.components';
|
|
22
|
-
export * from './atoms/pdf/pdf-typography.components';
|
|
23
|
-
export * from './atoms/pdf/pdf-wrapped-view.components';
|
|
24
|
-
export * from './molecules/css-multiline-input/css-multiline-input.component';
|
|
25
|
-
export * from './molecules/auto-complete-filter-multiple-select-multiple-fields-display/auto-complete-filter-multiple-select-multiple-fields-display.component';
|
|
26
|
-
export * from './molecules/auto-complete-filter-single-select-multiple-fields-display/auto-complete-filter-single-select-multiple-fields-display.component';
|
|
27
|
-
export * from './molecules/multi-select/multi-select.component';
|
|
28
|
-
export * from './molecules/multi-select-with-field/multi-select-with-field.component';
|
|
29
|
-
export * from './molecules/modal-confirm/modal-confirm.component';
|
|
30
|
-
export * from './molecules/autocomplete/autocomplete';
|
|
31
|
-
export * from './molecules/auto-complete-group-by/auto-complete-group-by.component';
|
|
32
|
-
export * from './molecules/color-picker/color-picker.component';
|
|
33
|
-
export * from './molecules/color-picker-modal/color-picker-modal.component';
|
|
34
|
-
export {
|
|
17
|
+
// export * from './atoms/grid/grid.component';
|
|
18
|
+
// export * from './atoms/list/list.component';
|
|
19
|
+
// export * from './atoms/pdf/pdf-images.components';
|
|
20
|
+
// export * from './atoms/pdf/pdf-table.components';
|
|
21
|
+
// export * from './atoms/pdf/pdf-typography.components';
|
|
22
|
+
// export * from './atoms/pdf/pdf-wrapped-view.components';
|
|
23
|
+
// export * from './molecules/css-multiline-input/css-multiline-input.component';
|
|
24
|
+
// export * from './molecules/auto-complete-filter-multiple-select-multiple-fields-display/auto-complete-filter-multiple-select-multiple-fields-display.component';
|
|
25
|
+
// export * from './molecules/auto-complete-filter-single-select-multiple-fields-display/auto-complete-filter-single-select-multiple-fields-display.component';
|
|
26
|
+
// export * from './molecules/multi-select/multi-select.component';
|
|
27
|
+
// export * from './molecules/multi-select-with-field/multi-select-with-field.component';
|
|
28
|
+
// export * from './molecules/modal-confirm/modal-confirm.component';
|
|
29
|
+
// export * from './molecules/autocomplete/autocomplete';
|
|
30
|
+
// export * from './molecules/auto-complete-group-by/auto-complete-group-by.component';
|
|
31
|
+
// export * from './molecules/color-picker/color-picker.component';
|
|
32
|
+
// export * from './molecules/color-picker-modal/color-picker-modal.component';
|
|
33
|
+
// export {Form};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/* eslint-disable */
|
|
2
2
|
import React, { useState, useEffect, useRef } from 'react';
|
|
3
|
-
import { Icon } from '
|
|
3
|
+
import { Icon } from '../../atoms/icons/icons.component';
|
|
4
4
|
import '../../../tc.css';
|
|
5
5
|
export const AutoCompleteFilterMultipleSelectMultipleFieldsDisplay = ({ uniqueField = '_id', isSelectedStringArray = false, loader = false, placeholder = 'Search...', data, hasError = false, disable = false, isUpperCase = false, name, onFilter, onUpdate, onSelect, onBlur, }) => {
|
|
6
6
|
const [value, setValue] = useState('');
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/* eslint-disable */
|
|
2
2
|
import React, { useState, useEffect, useRef } from 'react';
|
|
3
|
-
import { Icon } from '
|
|
3
|
+
import { Icon } from '../../atoms/icons/icons.component';
|
|
4
4
|
import '../../../tc.css';
|
|
5
5
|
export const AutoCompleteFilterSingleSelectMultiFieldsDisplay = ({ disable = false, loader = false, displayValue = '', placeholder = 'Search...', data, hasError = false, className, posstion = 'absolute', onFilter, onSelect, onBlur, }) => {
|
|
6
6
|
const [value, setValue] = useState(displayValue);
|
package/lib/src/core-components/molecules/auto-complete-group-by/auto-complete-group-by.component.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/* eslint-disable */
|
|
2
2
|
import React, { useState, useEffect, useRef } from 'react';
|
|
3
|
-
import { Icon } from '
|
|
3
|
+
import { Icon } from '../../atoms/icons/icons.component';
|
|
4
4
|
// import PerfectScrollbar from 'react-perfect-scrollbar';
|
|
5
5
|
import '../../../tc.css';
|
|
6
6
|
export const AutocompleteGroupBy = (props) => {
|
package/lib/src/core-components/molecules/css-multiline-input/css-multiline-input.component.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React, { useEffect, useState, useRef } from 'react';
|
|
2
|
-
import
|
|
2
|
+
import * as Form from '../../atoms/form/form.component';
|
|
3
3
|
import { properties as propertiesObj } from './css-properties';
|
|
4
4
|
import '../../../tc.css';
|
|
5
5
|
const mapToArray = (arr) => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-restyle-components",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.35",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Easy use restyle components",
|
|
6
6
|
"author": {
|
|
@@ -48,6 +48,7 @@
|
|
|
48
48
|
"@types/react": "^18.3.11",
|
|
49
49
|
"@types/react-dom": "^18.3.0",
|
|
50
50
|
"buffer": "^6.0.3",
|
|
51
|
+
"clsx": "^2.1.1",
|
|
51
52
|
"dayjs": "^1.11.1",
|
|
52
53
|
"jest-environment-jsdom": "^29.7.0",
|
|
53
54
|
"react-colorful": "^5.6.1",
|
|
@@ -55,6 +56,7 @@
|
|
|
55
56
|
"react-icons": "^5.2.1",
|
|
56
57
|
"react-scripts": "5.0.1",
|
|
57
58
|
"reactstrap": "^9.0.2",
|
|
59
|
+
"tailwind-merge": "^2.5.5",
|
|
58
60
|
"typescript": "^4.9.5",
|
|
59
61
|
"web-vitals": "^2.1.4"
|
|
60
62
|
},
|
|
@@ -81,7 +83,6 @@
|
|
|
81
83
|
"@vitest/coverage-c8": "^0.31.4",
|
|
82
84
|
"@vitest/ui": "^0.31.4",
|
|
83
85
|
"autoprefixer": "^10.4.19",
|
|
84
|
-
"clsx": "^2.1.1",
|
|
85
86
|
"copyfiles": "^2.4.1",
|
|
86
87
|
"craco-alias": "^3.0.1",
|
|
87
88
|
"css-loader": "^7.1.2",
|
|
@@ -99,7 +100,6 @@
|
|
|
99
100
|
"storybook": "^8.0.6",
|
|
100
101
|
"storybook-multilevel-sort": "^2.0.1",
|
|
101
102
|
"style-loader": "^4.0.0",
|
|
102
|
-
"tailwind-merge": "^2.5.5",
|
|
103
103
|
"tailwindcss": "^3.4.14",
|
|
104
104
|
"ts-jest": "^29.2.5",
|
|
105
105
|
"vitest": "^0.31.4",
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { render as renderComponent } from '@testing-library/react';
|
|
3
|
-
const Providers = ({ children }) => {
|
|
4
|
-
return React.createElement("div", null, children);
|
|
5
|
-
};
|
|
6
|
-
const render = (Component) => {
|
|
7
|
-
return renderComponent(Component, { wrapper: Providers });
|
|
8
|
-
};
|
|
9
|
-
export { render, Providers };
|
package/lib/src/tc.css
DELETED
|
@@ -1,944 +0,0 @@
|
|
|
1
|
-
/*! tailwindcss v3.4.3 | MIT License | https://tailwindcss.com*/
|
|
2
|
-
*,
|
|
3
|
-
:after,
|
|
4
|
-
:before {
|
|
5
|
-
border: 0 solid;
|
|
6
|
-
box-sizing: border-box;
|
|
7
|
-
}
|
|
8
|
-
:after,
|
|
9
|
-
:before {
|
|
10
|
-
--tw-content: '';
|
|
11
|
-
}
|
|
12
|
-
:host,
|
|
13
|
-
html {
|
|
14
|
-
-webkit-text-size-adjust: 100%;
|
|
15
|
-
font-feature-settings: normal;
|
|
16
|
-
-webkit-tap-highlight-color: transparent;
|
|
17
|
-
font-family:
|
|
18
|
-
ui-sans-serif,
|
|
19
|
-
system-ui,
|
|
20
|
-
sans-serif,
|
|
21
|
-
Apple Color Emoji,
|
|
22
|
-
Segoe UI Emoji,
|
|
23
|
-
Segoe UI Symbol,
|
|
24
|
-
Noto Color Emoji;
|
|
25
|
-
font-variation-settings: normal;
|
|
26
|
-
line-height: 1.5;
|
|
27
|
-
tab-size: 4;
|
|
28
|
-
}
|
|
29
|
-
body {
|
|
30
|
-
line-height: inherit;
|
|
31
|
-
margin: 0;
|
|
32
|
-
}
|
|
33
|
-
hr {
|
|
34
|
-
border-top-width: 1px;
|
|
35
|
-
color: inherit;
|
|
36
|
-
height: 0;
|
|
37
|
-
}
|
|
38
|
-
abbr:where([title]) {
|
|
39
|
-
-webkit-text-decoration: underline dotted;
|
|
40
|
-
text-decoration: underline dotted;
|
|
41
|
-
}
|
|
42
|
-
h1,
|
|
43
|
-
h2,
|
|
44
|
-
h3,
|
|
45
|
-
h4,
|
|
46
|
-
h5,
|
|
47
|
-
h6 {
|
|
48
|
-
font-size: inherit;
|
|
49
|
-
font-weight: inherit;
|
|
50
|
-
}
|
|
51
|
-
a {
|
|
52
|
-
color: inherit;
|
|
53
|
-
text-decoration: inherit;
|
|
54
|
-
}
|
|
55
|
-
b,
|
|
56
|
-
strong {
|
|
57
|
-
font-weight: bolder;
|
|
58
|
-
}
|
|
59
|
-
code,
|
|
60
|
-
kbd,
|
|
61
|
-
pre,
|
|
62
|
-
samp {
|
|
63
|
-
font-feature-settings: normal;
|
|
64
|
-
font-family:
|
|
65
|
-
ui-monospace,
|
|
66
|
-
SFMono-Regular,
|
|
67
|
-
Menlo,
|
|
68
|
-
Monaco,
|
|
69
|
-
Consolas,
|
|
70
|
-
Liberation Mono,
|
|
71
|
-
Courier New,
|
|
72
|
-
monospace;
|
|
73
|
-
font-size: 1em;
|
|
74
|
-
font-variation-settings: normal;
|
|
75
|
-
}
|
|
76
|
-
small {
|
|
77
|
-
font-size: 80%;
|
|
78
|
-
}
|
|
79
|
-
sub,
|
|
80
|
-
sup {
|
|
81
|
-
font-size: 75%;
|
|
82
|
-
line-height: 0;
|
|
83
|
-
position: relative;
|
|
84
|
-
vertical-align: initial;
|
|
85
|
-
}
|
|
86
|
-
sub {
|
|
87
|
-
bottom: -0.25em;
|
|
88
|
-
}
|
|
89
|
-
sup {
|
|
90
|
-
top: -0.5em;
|
|
91
|
-
}
|
|
92
|
-
table {
|
|
93
|
-
border-collapse: collapse;
|
|
94
|
-
border-color: inherit;
|
|
95
|
-
text-indent: 0;
|
|
96
|
-
}
|
|
97
|
-
button,
|
|
98
|
-
input,
|
|
99
|
-
optgroup,
|
|
100
|
-
select,
|
|
101
|
-
textarea {
|
|
102
|
-
font-feature-settings: inherit;
|
|
103
|
-
color: inherit;
|
|
104
|
-
font-family: inherit;
|
|
105
|
-
font-size: 100%;
|
|
106
|
-
font-variation-settings: inherit;
|
|
107
|
-
font-weight: inherit;
|
|
108
|
-
letter-spacing: inherit;
|
|
109
|
-
line-height: inherit;
|
|
110
|
-
margin: 0;
|
|
111
|
-
padding: 0;
|
|
112
|
-
}
|
|
113
|
-
button,
|
|
114
|
-
select {
|
|
115
|
-
text-transform: none;
|
|
116
|
-
}
|
|
117
|
-
button,
|
|
118
|
-
input:where([type='button']),
|
|
119
|
-
input:where([type='reset']),
|
|
120
|
-
input:where([type='submit']) {
|
|
121
|
-
-webkit-appearance: button;
|
|
122
|
-
background-color: initial;
|
|
123
|
-
background-image: none;
|
|
124
|
-
}
|
|
125
|
-
:-moz-focusring {
|
|
126
|
-
outline: auto;
|
|
127
|
-
}
|
|
128
|
-
:-moz-ui-invalid {
|
|
129
|
-
box-shadow: none;
|
|
130
|
-
}
|
|
131
|
-
progress {
|
|
132
|
-
vertical-align: initial;
|
|
133
|
-
}
|
|
134
|
-
::-webkit-inner-spin-button,
|
|
135
|
-
::-webkit-outer-spin-button {
|
|
136
|
-
height: auto;
|
|
137
|
-
}
|
|
138
|
-
[type='search'] {
|
|
139
|
-
-webkit-appearance: textfield;
|
|
140
|
-
outline-offset: -2px;
|
|
141
|
-
}
|
|
142
|
-
::-webkit-search-decoration {
|
|
143
|
-
-webkit-appearance: none;
|
|
144
|
-
}
|
|
145
|
-
::-webkit-file-upload-button {
|
|
146
|
-
-webkit-appearance: button;
|
|
147
|
-
font: inherit;
|
|
148
|
-
}
|
|
149
|
-
summary {
|
|
150
|
-
display: list-item;
|
|
151
|
-
}
|
|
152
|
-
blockquote,
|
|
153
|
-
dd,
|
|
154
|
-
dl,
|
|
155
|
-
figure,
|
|
156
|
-
h1,
|
|
157
|
-
h2,
|
|
158
|
-
h3,
|
|
159
|
-
h4,
|
|
160
|
-
h5,
|
|
161
|
-
h6,
|
|
162
|
-
hr,
|
|
163
|
-
p,
|
|
164
|
-
pre {
|
|
165
|
-
margin: 0;
|
|
166
|
-
}
|
|
167
|
-
fieldset {
|
|
168
|
-
margin: 0;
|
|
169
|
-
}
|
|
170
|
-
fieldset,
|
|
171
|
-
legend {
|
|
172
|
-
padding: 0;
|
|
173
|
-
}
|
|
174
|
-
menu,
|
|
175
|
-
ol,
|
|
176
|
-
ul {
|
|
177
|
-
list-style: none;
|
|
178
|
-
margin: 0;
|
|
179
|
-
padding: 0;
|
|
180
|
-
}
|
|
181
|
-
dialog {
|
|
182
|
-
padding: 0;
|
|
183
|
-
}
|
|
184
|
-
textarea {
|
|
185
|
-
resize: vertical;
|
|
186
|
-
}
|
|
187
|
-
input::placeholder,
|
|
188
|
-
textarea::placeholder {
|
|
189
|
-
color: #9ca3af;
|
|
190
|
-
opacity: 1;
|
|
191
|
-
}
|
|
192
|
-
[role='button'],
|
|
193
|
-
button {
|
|
194
|
-
cursor: pointer;
|
|
195
|
-
}
|
|
196
|
-
:disabled {
|
|
197
|
-
cursor: default;
|
|
198
|
-
}
|
|
199
|
-
audio,
|
|
200
|
-
canvas,
|
|
201
|
-
embed,
|
|
202
|
-
iframe,
|
|
203
|
-
img,
|
|
204
|
-
object,
|
|
205
|
-
svg,
|
|
206
|
-
video {
|
|
207
|
-
display: block;
|
|
208
|
-
vertical-align: middle;
|
|
209
|
-
}
|
|
210
|
-
img,
|
|
211
|
-
video {
|
|
212
|
-
height: auto;
|
|
213
|
-
max-width: 100%;
|
|
214
|
-
}
|
|
215
|
-
[hidden] {
|
|
216
|
-
display: none;
|
|
217
|
-
}
|
|
218
|
-
*,
|
|
219
|
-
:after,
|
|
220
|
-
:before {
|
|
221
|
-
--tw-border-spacing-x: 0;
|
|
222
|
-
--tw-border-spacing-y: 0;
|
|
223
|
-
--tw-translate-x: 0;
|
|
224
|
-
--tw-translate-y: 0;
|
|
225
|
-
--tw-rotate: 0;
|
|
226
|
-
--tw-skew-x: 0;
|
|
227
|
-
--tw-skew-y: 0;
|
|
228
|
-
--tw-scale-x: 1;
|
|
229
|
-
--tw-scale-y: 1;
|
|
230
|
-
--tw-pan-x: ;
|
|
231
|
-
--tw-pan-y: ;
|
|
232
|
-
--tw-pinch-zoom: ;
|
|
233
|
-
--tw-scroll-snap-strictness: proximity;
|
|
234
|
-
--tw-gradient-from-position: ;
|
|
235
|
-
--tw-gradient-via-position: ;
|
|
236
|
-
--tw-gradient-to-position: ;
|
|
237
|
-
--tw-ordinal: ;
|
|
238
|
-
--tw-slashed-zero: ;
|
|
239
|
-
--tw-numeric-figure: ;
|
|
240
|
-
--tw-numeric-spacing: ;
|
|
241
|
-
--tw-numeric-fraction: ;
|
|
242
|
-
--tw-ring-inset: ;
|
|
243
|
-
--tw-ring-offset-width: 0px;
|
|
244
|
-
--tw-ring-offset-color: #fff;
|
|
245
|
-
--tw-ring-color: #3b82f680;
|
|
246
|
-
--tw-ring-offset-shadow: 0 0 #0000;
|
|
247
|
-
--tw-ring-shadow: 0 0 #0000;
|
|
248
|
-
--tw-shadow: 0 0 #0000;
|
|
249
|
-
--tw-shadow-colored: 0 0 #0000;
|
|
250
|
-
--tw-blur: ;
|
|
251
|
-
--tw-brightness: ;
|
|
252
|
-
--tw-contrast: ;
|
|
253
|
-
--tw-grayscale: ;
|
|
254
|
-
--tw-hue-rotate: ;
|
|
255
|
-
--tw-invert: ;
|
|
256
|
-
--tw-saturate: ;
|
|
257
|
-
--tw-sepia: ;
|
|
258
|
-
--tw-drop-shadow: ;
|
|
259
|
-
--tw-backdrop-blur: ;
|
|
260
|
-
--tw-backdrop-brightness: ;
|
|
261
|
-
--tw-backdrop-contrast: ;
|
|
262
|
-
--tw-backdrop-grayscale: ;
|
|
263
|
-
--tw-backdrop-hue-rotate: ;
|
|
264
|
-
--tw-backdrop-invert: ;
|
|
265
|
-
--tw-backdrop-opacity: ;
|
|
266
|
-
--tw-backdrop-saturate: ;
|
|
267
|
-
--tw-backdrop-sepia: ;
|
|
268
|
-
--tw-contain-size: ;
|
|
269
|
-
--tw-contain-layout: ;
|
|
270
|
-
--tw-contain-paint: ;
|
|
271
|
-
--tw-contain-style: ;
|
|
272
|
-
}
|
|
273
|
-
::backdrop {
|
|
274
|
-
--tw-border-spacing-x: 0;
|
|
275
|
-
--tw-border-spacing-y: 0;
|
|
276
|
-
--tw-translate-x: 0;
|
|
277
|
-
--tw-translate-y: 0;
|
|
278
|
-
--tw-rotate: 0;
|
|
279
|
-
--tw-skew-x: 0;
|
|
280
|
-
--tw-skew-y: 0;
|
|
281
|
-
--tw-scale-x: 1;
|
|
282
|
-
--tw-scale-y: 1;
|
|
283
|
-
--tw-pan-x: ;
|
|
284
|
-
--tw-pan-y: ;
|
|
285
|
-
--tw-pinch-zoom: ;
|
|
286
|
-
--tw-scroll-snap-strictness: proximity;
|
|
287
|
-
--tw-gradient-from-position: ;
|
|
288
|
-
--tw-gradient-via-position: ;
|
|
289
|
-
--tw-gradient-to-position: ;
|
|
290
|
-
--tw-ordinal: ;
|
|
291
|
-
--tw-slashed-zero: ;
|
|
292
|
-
--tw-numeric-figure: ;
|
|
293
|
-
--tw-numeric-spacing: ;
|
|
294
|
-
--tw-numeric-fraction: ;
|
|
295
|
-
--tw-ring-inset: ;
|
|
296
|
-
--tw-ring-offset-width: 0px;
|
|
297
|
-
--tw-ring-offset-color: #fff;
|
|
298
|
-
--tw-ring-color: #3b82f680;
|
|
299
|
-
--tw-ring-offset-shadow: 0 0 #0000;
|
|
300
|
-
--tw-ring-shadow: 0 0 #0000;
|
|
301
|
-
--tw-shadow: 0 0 #0000;
|
|
302
|
-
--tw-shadow-colored: 0 0 #0000;
|
|
303
|
-
--tw-blur: ;
|
|
304
|
-
--tw-brightness: ;
|
|
305
|
-
--tw-contrast: ;
|
|
306
|
-
--tw-grayscale: ;
|
|
307
|
-
--tw-hue-rotate: ;
|
|
308
|
-
--tw-invert: ;
|
|
309
|
-
--tw-saturate: ;
|
|
310
|
-
--tw-sepia: ;
|
|
311
|
-
--tw-drop-shadow: ;
|
|
312
|
-
--tw-backdrop-blur: ;
|
|
313
|
-
--tw-backdrop-brightness: ;
|
|
314
|
-
--tw-backdrop-contrast: ;
|
|
315
|
-
--tw-backdrop-grayscale: ;
|
|
316
|
-
--tw-backdrop-hue-rotate: ;
|
|
317
|
-
--tw-backdrop-invert: ;
|
|
318
|
-
--tw-backdrop-opacity: ;
|
|
319
|
-
--tw-backdrop-saturate: ;
|
|
320
|
-
--tw-backdrop-sepia: ;
|
|
321
|
-
--tw-contain-size: ;
|
|
322
|
-
--tw-contain-layout: ;
|
|
323
|
-
--tw-contain-paint: ;
|
|
324
|
-
--tw-contain-style: ;
|
|
325
|
-
}
|
|
326
|
-
.invisible {
|
|
327
|
-
visibility: hidden;
|
|
328
|
-
}
|
|
329
|
-
.fixed {
|
|
330
|
-
position: fixed;
|
|
331
|
-
}
|
|
332
|
-
.absolute {
|
|
333
|
-
position: absolute;
|
|
334
|
-
}
|
|
335
|
-
.relative {
|
|
336
|
-
position: relative;
|
|
337
|
-
}
|
|
338
|
-
.inset-0 {
|
|
339
|
-
inset: 0;
|
|
340
|
-
}
|
|
341
|
-
.left-0 {
|
|
342
|
-
left: 0;
|
|
343
|
-
}
|
|
344
|
-
.right-0 {
|
|
345
|
-
right: 0;
|
|
346
|
-
}
|
|
347
|
-
.right-3 {
|
|
348
|
-
right: 0.75rem;
|
|
349
|
-
}
|
|
350
|
-
.top-1 {
|
|
351
|
-
top: 0.25rem;
|
|
352
|
-
}
|
|
353
|
-
.top-1\/2 {
|
|
354
|
-
top: 50%;
|
|
355
|
-
}
|
|
356
|
-
.top-3 {
|
|
357
|
-
top: 0.75rem;
|
|
358
|
-
}
|
|
359
|
-
.z-10 {
|
|
360
|
-
z-index: 10;
|
|
361
|
-
}
|
|
362
|
-
.z-20 {
|
|
363
|
-
z-index: 20;
|
|
364
|
-
}
|
|
365
|
-
.z-40 {
|
|
366
|
-
z-index: 40;
|
|
367
|
-
}
|
|
368
|
-
.z-50 {
|
|
369
|
-
z-index: 50;
|
|
370
|
-
}
|
|
371
|
-
.m-2 {
|
|
372
|
-
margin: 0.5rem;
|
|
373
|
-
}
|
|
374
|
-
.mx-auto {
|
|
375
|
-
margin-left: auto;
|
|
376
|
-
margin-right: auto;
|
|
377
|
-
}
|
|
378
|
-
.my-4 {
|
|
379
|
-
margin-bottom: 1rem;
|
|
380
|
-
margin-top: 1rem;
|
|
381
|
-
}
|
|
382
|
-
.-mb-px {
|
|
383
|
-
margin-bottom: -1px;
|
|
384
|
-
}
|
|
385
|
-
.-mt-2 {
|
|
386
|
-
margin-top: -0.5rem;
|
|
387
|
-
}
|
|
388
|
-
.mb-1 {
|
|
389
|
-
margin-bottom: 0.25rem;
|
|
390
|
-
}
|
|
391
|
-
.ml-1 {
|
|
392
|
-
margin-left: 0.25rem;
|
|
393
|
-
}
|
|
394
|
-
.ml-2 {
|
|
395
|
-
margin-left: 0.5rem;
|
|
396
|
-
}
|
|
397
|
-
.mr-1 {
|
|
398
|
-
margin-right: 0.25rem;
|
|
399
|
-
}
|
|
400
|
-
.mr-2 {
|
|
401
|
-
margin-right: 0.5rem;
|
|
402
|
-
}
|
|
403
|
-
.mr-3 {
|
|
404
|
-
margin-right: 0.75rem;
|
|
405
|
-
}
|
|
406
|
-
.mt-0 {
|
|
407
|
-
margin-top: 0;
|
|
408
|
-
}
|
|
409
|
-
.mt-1 {
|
|
410
|
-
margin-top: 0.25rem;
|
|
411
|
-
}
|
|
412
|
-
.mt-4 {
|
|
413
|
-
margin-top: 1rem;
|
|
414
|
-
}
|
|
415
|
-
.mt-6 {
|
|
416
|
-
margin-top: 1.5rem;
|
|
417
|
-
}
|
|
418
|
-
.block {
|
|
419
|
-
display: block;
|
|
420
|
-
}
|
|
421
|
-
.inline-block {
|
|
422
|
-
display: inline-block;
|
|
423
|
-
}
|
|
424
|
-
.flex {
|
|
425
|
-
display: flex;
|
|
426
|
-
}
|
|
427
|
-
.inline-flex {
|
|
428
|
-
display: inline-flex;
|
|
429
|
-
}
|
|
430
|
-
.hidden {
|
|
431
|
-
display: none;
|
|
432
|
-
}
|
|
433
|
-
.h-0 {
|
|
434
|
-
height: 0;
|
|
435
|
-
}
|
|
436
|
-
.h-0\.5 {
|
|
437
|
-
height: 0.125rem;
|
|
438
|
-
}
|
|
439
|
-
.h-1 {
|
|
440
|
-
height: 0.25rem;
|
|
441
|
-
}
|
|
442
|
-
.h-3 {
|
|
443
|
-
height: 0.75rem;
|
|
444
|
-
}
|
|
445
|
-
.h-4 {
|
|
446
|
-
height: 1rem;
|
|
447
|
-
}
|
|
448
|
-
.h-6 {
|
|
449
|
-
height: 1.5rem;
|
|
450
|
-
}
|
|
451
|
-
.h-8 {
|
|
452
|
-
height: 2rem;
|
|
453
|
-
}
|
|
454
|
-
.max-h-40 {
|
|
455
|
-
max-height: 10rem;
|
|
456
|
-
}
|
|
457
|
-
.w-10 {
|
|
458
|
-
width: 2.5rem;
|
|
459
|
-
}
|
|
460
|
-
.w-3 {
|
|
461
|
-
width: 0.75rem;
|
|
462
|
-
}
|
|
463
|
-
.w-4 {
|
|
464
|
-
width: 1rem;
|
|
465
|
-
}
|
|
466
|
-
.w-40 {
|
|
467
|
-
width: 10rem;
|
|
468
|
-
}
|
|
469
|
-
.w-8 {
|
|
470
|
-
width: 2rem;
|
|
471
|
-
}
|
|
472
|
-
.w-full {
|
|
473
|
-
width: 100%;
|
|
474
|
-
}
|
|
475
|
-
.max-w-full {
|
|
476
|
-
max-width: 100%;
|
|
477
|
-
}
|
|
478
|
-
.flex-auto {
|
|
479
|
-
flex: 1 1 auto;
|
|
480
|
-
}
|
|
481
|
-
.-translate-x-1\/2 {
|
|
482
|
-
--tw-translate-x: -50%;
|
|
483
|
-
}
|
|
484
|
-
.-translate-x-1\/2,
|
|
485
|
-
.-translate-y-1\/2 {
|
|
486
|
-
transform: translate(var(--tw-translate-x), var(--tw-translate-y))
|
|
487
|
-
rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
|
|
488
|
-
scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
489
|
-
}
|
|
490
|
-
.-translate-y-1\/2 {
|
|
491
|
-
--tw-translate-y: -50%;
|
|
492
|
-
}
|
|
493
|
-
.translate-x-1\/2 {
|
|
494
|
-
--tw-translate-x: 50%;
|
|
495
|
-
}
|
|
496
|
-
.transform,
|
|
497
|
-
.translate-x-1\/2 {
|
|
498
|
-
transform: translate(var(--tw-translate-x), var(--tw-translate-y))
|
|
499
|
-
rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
|
|
500
|
-
scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
501
|
-
}
|
|
502
|
-
.cursor-pointer {
|
|
503
|
-
cursor: pointer;
|
|
504
|
-
}
|
|
505
|
-
.list-none {
|
|
506
|
-
list-style-type: none;
|
|
507
|
-
}
|
|
508
|
-
.appearance-none {
|
|
509
|
-
-webkit-appearance: none;
|
|
510
|
-
appearance: none;
|
|
511
|
-
}
|
|
512
|
-
.flex-row {
|
|
513
|
-
flex-direction: row;
|
|
514
|
-
}
|
|
515
|
-
.flex-col {
|
|
516
|
-
flex-direction: column;
|
|
517
|
-
}
|
|
518
|
-
.flex-wrap {
|
|
519
|
-
flex-wrap: wrap;
|
|
520
|
-
}
|
|
521
|
-
.place-items-center {
|
|
522
|
-
place-items: center;
|
|
523
|
-
}
|
|
524
|
-
.items-center {
|
|
525
|
-
align-items: center;
|
|
526
|
-
}
|
|
527
|
-
.items-stretch {
|
|
528
|
-
align-items: stretch;
|
|
529
|
-
}
|
|
530
|
-
.justify-center {
|
|
531
|
-
justify-content: center;
|
|
532
|
-
}
|
|
533
|
-
.gap-1 {
|
|
534
|
-
gap: 0.25rem;
|
|
535
|
-
}
|
|
536
|
-
.gap-2 {
|
|
537
|
-
gap: 0.5rem;
|
|
538
|
-
}
|
|
539
|
-
.gap-4 {
|
|
540
|
-
gap: 1rem;
|
|
541
|
-
}
|
|
542
|
-
.space-x-1 > :not([hidden]) ~ :not([hidden]) {
|
|
543
|
-
--tw-space-x-reverse: 0;
|
|
544
|
-
margin-left: calc(0.25rem * (1 - var(--tw-space-x-reverse)));
|
|
545
|
-
margin-right: calc(0.25rem * var(--tw-space-x-reverse));
|
|
546
|
-
}
|
|
547
|
-
.divide-y > :not([hidden]) ~ :not([hidden]) {
|
|
548
|
-
--tw-divide-y-reverse: 0;
|
|
549
|
-
border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
|
|
550
|
-
border-top-width: calc(1px * (1 - var(--tw-divide-y-reverse)));
|
|
551
|
-
}
|
|
552
|
-
.overflow-y-auto {
|
|
553
|
-
overflow-y: auto;
|
|
554
|
-
}
|
|
555
|
-
.overflow-x-hidden {
|
|
556
|
-
overflow-x: hidden;
|
|
557
|
-
}
|
|
558
|
-
.overflow-y-scroll {
|
|
559
|
-
overflow-y: scroll;
|
|
560
|
-
}
|
|
561
|
-
.rounded {
|
|
562
|
-
border-radius: 0.25rem;
|
|
563
|
-
}
|
|
564
|
-
.rounded-100px {
|
|
565
|
-
border-radius: 100px;
|
|
566
|
-
}
|
|
567
|
-
.rounded-full {
|
|
568
|
-
border-radius: 9999px;
|
|
569
|
-
}
|
|
570
|
-
.rounded-lg {
|
|
571
|
-
border-radius: 0.5rem;
|
|
572
|
-
}
|
|
573
|
-
.rounded-md {
|
|
574
|
-
border-radius: 0.375rem;
|
|
575
|
-
}
|
|
576
|
-
.rounded-none {
|
|
577
|
-
border-radius: 0;
|
|
578
|
-
}
|
|
579
|
-
.rounded-sm {
|
|
580
|
-
border-radius: 0.125rem;
|
|
581
|
-
}
|
|
582
|
-
.border {
|
|
583
|
-
border-width: 1px;
|
|
584
|
-
}
|
|
585
|
-
.border-0 {
|
|
586
|
-
border-width: 0;
|
|
587
|
-
}
|
|
588
|
-
.border-b {
|
|
589
|
-
border-bottom-width: 1px;
|
|
590
|
-
}
|
|
591
|
-
.border-b-0 {
|
|
592
|
-
border-bottom-width: 0;
|
|
593
|
-
}
|
|
594
|
-
.border-gray-dark-secondary {
|
|
595
|
-
--tw-border-opacity: 1;
|
|
596
|
-
border-color: rgb(151 151 151 / var(--tw-border-opacity));
|
|
597
|
-
}
|
|
598
|
-
.border-gray-light,
|
|
599
|
-
.border-gray-secondary {
|
|
600
|
-
--tw-border-opacity: 1;
|
|
601
|
-
border-color: rgb(196 196 196 / var(--tw-border-opacity));
|
|
602
|
-
}
|
|
603
|
-
.border-orange {
|
|
604
|
-
--tw-border-opacity: 1;
|
|
605
|
-
border-color: rgb(231 80 61 / var(--tw-border-opacity));
|
|
606
|
-
}
|
|
607
|
-
.border-primary {
|
|
608
|
-
border-color: var(--theme-primary);
|
|
609
|
-
}
|
|
610
|
-
.border-red {
|
|
611
|
-
--tw-border-opacity: 1;
|
|
612
|
-
border-color: rgb(255 0 0 / var(--tw-border-opacity));
|
|
613
|
-
}
|
|
614
|
-
.border-transparent {
|
|
615
|
-
border-color: #0000;
|
|
616
|
-
}
|
|
617
|
-
.bg-\[\#007BFF\] {
|
|
618
|
-
--tw-bg-opacity: 1;
|
|
619
|
-
background-color: rgb(0 123 255 / var(--tw-bg-opacity));
|
|
620
|
-
}
|
|
621
|
-
.bg-background-secondary {
|
|
622
|
-
--tw-bg-opacity: 1;
|
|
623
|
-
background-color: rgb(240 239 238 / var(--tw-bg-opacity));
|
|
624
|
-
}
|
|
625
|
-
.bg-black {
|
|
626
|
-
--tw-bg-opacity: 1;
|
|
627
|
-
background-color: rgb(0 0 0 / var(--tw-bg-opacity));
|
|
628
|
-
}
|
|
629
|
-
.bg-gray-dark-secondary {
|
|
630
|
-
--tw-bg-opacity: 1;
|
|
631
|
-
background-color: rgb(151 151 151 / var(--tw-bg-opacity));
|
|
632
|
-
}
|
|
633
|
-
.bg-gray-light {
|
|
634
|
-
--tw-bg-opacity: 1;
|
|
635
|
-
background-color: rgb(196 196 196 / var(--tw-bg-opacity));
|
|
636
|
-
}
|
|
637
|
-
.bg-green-700 {
|
|
638
|
-
--tw-bg-opacity: 1;
|
|
639
|
-
background-color: rgb(21 128 61 / var(--tw-bg-opacity));
|
|
640
|
-
}
|
|
641
|
-
.bg-orange {
|
|
642
|
-
--tw-bg-opacity: 1;
|
|
643
|
-
background-color: rgb(231 80 61 / var(--tw-bg-opacity));
|
|
644
|
-
}
|
|
645
|
-
.bg-orange1 {
|
|
646
|
-
--tw-bg-opacity: 1;
|
|
647
|
-
background-color: rgb(239 68 68 / var(--tw-bg-opacity));
|
|
648
|
-
}
|
|
649
|
-
.bg-slate-800 {
|
|
650
|
-
--tw-bg-opacity: 1;
|
|
651
|
-
background-color: rgb(30 41 59 / var(--tw-bg-opacity));
|
|
652
|
-
}
|
|
653
|
-
.bg-transparent {
|
|
654
|
-
background-color: initial;
|
|
655
|
-
}
|
|
656
|
-
.bg-white {
|
|
657
|
-
--tw-bg-opacity: 1;
|
|
658
|
-
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
|
659
|
-
}
|
|
660
|
-
.bg-none {
|
|
661
|
-
background-image: none;
|
|
662
|
-
}
|
|
663
|
-
.p-2 {
|
|
664
|
-
padding: 0.5rem;
|
|
665
|
-
}
|
|
666
|
-
.p-3 {
|
|
667
|
-
padding: 0.75rem;
|
|
668
|
-
}
|
|
669
|
-
.px-0 {
|
|
670
|
-
padding-left: 0;
|
|
671
|
-
padding-right: 0;
|
|
672
|
-
}
|
|
673
|
-
.px-2 {
|
|
674
|
-
padding-left: 0.5rem;
|
|
675
|
-
padding-right: 0.5rem;
|
|
676
|
-
}
|
|
677
|
-
.px-3 {
|
|
678
|
-
padding-left: 0.75rem;
|
|
679
|
-
padding-right: 0.75rem;
|
|
680
|
-
}
|
|
681
|
-
.px-4 {
|
|
682
|
-
padding-left: 1rem;
|
|
683
|
-
padding-right: 1rem;
|
|
684
|
-
}
|
|
685
|
-
.py-1 {
|
|
686
|
-
padding-bottom: 0.25rem;
|
|
687
|
-
padding-top: 0.25rem;
|
|
688
|
-
}
|
|
689
|
-
.py-2 {
|
|
690
|
-
padding-top: 0.5rem;
|
|
691
|
-
}
|
|
692
|
-
.pb-2,
|
|
693
|
-
.py-2 {
|
|
694
|
-
padding-bottom: 0.5rem;
|
|
695
|
-
}
|
|
696
|
-
.pt-1 {
|
|
697
|
-
padding-top: 0.25rem;
|
|
698
|
-
}
|
|
699
|
-
.pt-2 {
|
|
700
|
-
padding-top: 0.5rem;
|
|
701
|
-
}
|
|
702
|
-
.pt-3 {
|
|
703
|
-
padding-top: 0.75rem;
|
|
704
|
-
}
|
|
705
|
-
.text-center {
|
|
706
|
-
text-align: center;
|
|
707
|
-
}
|
|
708
|
-
.font-arimaRegular {
|
|
709
|
-
font-family: Nunito Sans Regular;
|
|
710
|
-
}
|
|
711
|
-
.text-3md {
|
|
712
|
-
font-size: 20px;
|
|
713
|
-
}
|
|
714
|
-
.text-3xs {
|
|
715
|
-
font-size: 12px;
|
|
716
|
-
}
|
|
717
|
-
.text-4xs {
|
|
718
|
-
font-size: 14px;
|
|
719
|
-
}
|
|
720
|
-
.text-5xl {
|
|
721
|
-
font-size: 3rem;
|
|
722
|
-
line-height: 1;
|
|
723
|
-
}
|
|
724
|
-
.text-base {
|
|
725
|
-
font-size: 1rem;
|
|
726
|
-
line-height: 1.5rem;
|
|
727
|
-
}
|
|
728
|
-
.text-lg {
|
|
729
|
-
font-size: 1.125rem;
|
|
730
|
-
line-height: 1.75rem;
|
|
731
|
-
}
|
|
732
|
-
.text-md {
|
|
733
|
-
font-size: 16px;
|
|
734
|
-
}
|
|
735
|
-
.text-sm {
|
|
736
|
-
font-size: 0.875rem;
|
|
737
|
-
line-height: 1.25rem;
|
|
738
|
-
}
|
|
739
|
-
.font-bold {
|
|
740
|
-
font-weight: 700;
|
|
741
|
-
}
|
|
742
|
-
.font-extrabold {
|
|
743
|
-
font-weight: 800;
|
|
744
|
-
}
|
|
745
|
-
.font-medium {
|
|
746
|
-
font-weight: 500;
|
|
747
|
-
}
|
|
748
|
-
.uppercase {
|
|
749
|
-
text-transform: uppercase;
|
|
750
|
-
}
|
|
751
|
-
.lowercase {
|
|
752
|
-
text-transform: lowercase;
|
|
753
|
-
}
|
|
754
|
-
.capitalize {
|
|
755
|
-
text-transform: capitalize;
|
|
756
|
-
}
|
|
757
|
-
.leading-4 {
|
|
758
|
-
line-height: 1rem;
|
|
759
|
-
}
|
|
760
|
-
.text-black {
|
|
761
|
-
--tw-text-opacity: 1;
|
|
762
|
-
color: rgb(0 0 0 / var(--tw-text-opacity));
|
|
763
|
-
}
|
|
764
|
-
.text-blue-600 {
|
|
765
|
-
--tw-text-opacity: 1;
|
|
766
|
-
color: rgb(37 99 235 / var(--tw-text-opacity));
|
|
767
|
-
}
|
|
768
|
-
.text-current {
|
|
769
|
-
color: currentColor;
|
|
770
|
-
}
|
|
771
|
-
.text-gray {
|
|
772
|
-
--tw-text-opacity: 1;
|
|
773
|
-
color: rgb(105 105 105 / var(--tw-text-opacity));
|
|
774
|
-
}
|
|
775
|
-
.text-gray-dark-secondary {
|
|
776
|
-
--tw-text-opacity: 1;
|
|
777
|
-
color: rgb(151 151 151 / var(--tw-text-opacity));
|
|
778
|
-
}
|
|
779
|
-
.text-orange {
|
|
780
|
-
--tw-text-opacity: 1;
|
|
781
|
-
color: rgb(231 80 61 / var(--tw-text-opacity));
|
|
782
|
-
}
|
|
783
|
-
.text-primaryCharcoal {
|
|
784
|
-
--tw-text-opacity: 1;
|
|
785
|
-
color: rgb(33 39 33 / var(--tw-text-opacity));
|
|
786
|
-
}
|
|
787
|
-
.text-red {
|
|
788
|
-
--tw-text-opacity: 1;
|
|
789
|
-
color: rgb(255 0 0 / var(--tw-text-opacity));
|
|
790
|
-
}
|
|
791
|
-
.text-white {
|
|
792
|
-
--tw-text-opacity: 1;
|
|
793
|
-
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
794
|
-
}
|
|
795
|
-
.underline {
|
|
796
|
-
text-decoration-line: underline;
|
|
797
|
-
}
|
|
798
|
-
.line-through {
|
|
799
|
-
text-decoration-line: line-through;
|
|
800
|
-
}
|
|
801
|
-
.opacity-100 {
|
|
802
|
-
opacity: 1;
|
|
803
|
-
}
|
|
804
|
-
.opacity-25 {
|
|
805
|
-
opacity: 0.25;
|
|
806
|
-
}
|
|
807
|
-
.opacity-50 {
|
|
808
|
-
opacity: 0.5;
|
|
809
|
-
}
|
|
810
|
-
.shadow {
|
|
811
|
-
--tw-shadow: 0 1px 3px 0 #0000001a, 0 1px 2px -1px #0000001a;
|
|
812
|
-
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color),
|
|
813
|
-
0 1px 2px -1px var(--tw-shadow-color);
|
|
814
|
-
}
|
|
815
|
-
.shadow,
|
|
816
|
-
.shadow-lg {
|
|
817
|
-
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
|
|
818
|
-
var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
819
|
-
}
|
|
820
|
-
.shadow-lg {
|
|
821
|
-
--tw-shadow: 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;
|
|
822
|
-
--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color),
|
|
823
|
-
0 4px 6px -4px var(--tw-shadow-color);
|
|
824
|
-
}
|
|
825
|
-
.shadow-sm {
|
|
826
|
-
--tw-shadow: 0 1px 2px 0 #0000000d;
|
|
827
|
-
--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
|
|
828
|
-
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
|
|
829
|
-
var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
830
|
-
}
|
|
831
|
-
.outline-none {
|
|
832
|
-
outline: 2px solid #0000;
|
|
833
|
-
outline-offset: 2px;
|
|
834
|
-
}
|
|
835
|
-
.outline {
|
|
836
|
-
outline-style: solid;
|
|
837
|
-
}
|
|
838
|
-
.outline-offset-8 {
|
|
839
|
-
outline-offset: 8px;
|
|
840
|
-
}
|
|
841
|
-
.blur {
|
|
842
|
-
--tw-blur: blur(8px);
|
|
843
|
-
}
|
|
844
|
-
.blur,
|
|
845
|
-
.filter {
|
|
846
|
-
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast)
|
|
847
|
-
var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate)
|
|
848
|
-
var(--tw-sepia) var(--tw-drop-shadow);
|
|
849
|
-
}
|
|
850
|
-
.duration-300 {
|
|
851
|
-
transition-duration: 0.3s;
|
|
852
|
-
}
|
|
853
|
-
.duration-500 {
|
|
854
|
-
transition-duration: 0.5s;
|
|
855
|
-
}
|
|
856
|
-
.ease-in-out {
|
|
857
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
858
|
-
}
|
|
859
|
-
.hover\:bg-\[\#007BFF\]:hover {
|
|
860
|
-
--tw-bg-opacity: 1;
|
|
861
|
-
background-color: rgb(0 123 255 / var(--tw-bg-opacity));
|
|
862
|
-
}
|
|
863
|
-
.hover\:shadow-lg:hover {
|
|
864
|
-
--tw-shadow: 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;
|
|
865
|
-
--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color),
|
|
866
|
-
0 4px 6px -4px var(--tw-shadow-color);
|
|
867
|
-
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
|
|
868
|
-
var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
869
|
-
}
|
|
870
|
-
.focus\:border-gray-secondary:focus {
|
|
871
|
-
--tw-border-opacity: 1;
|
|
872
|
-
border-color: rgb(196 196 196 / var(--tw-border-opacity));
|
|
873
|
-
}
|
|
874
|
-
.focus\:outline-none:focus {
|
|
875
|
-
outline: 2px solid #0000;
|
|
876
|
-
outline-offset: 2px;
|
|
877
|
-
}
|
|
878
|
-
.focus\:ring:focus {
|
|
879
|
-
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0
|
|
880
|
-
var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
881
|
-
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0
|
|
882
|
-
calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
883
|
-
}
|
|
884
|
-
.focus\:ring-0:focus,
|
|
885
|
-
.focus\:ring:focus {
|
|
886
|
-
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow),
|
|
887
|
-
var(--tw-shadow, 0 0 #0000);
|
|
888
|
-
}
|
|
889
|
-
.focus\:ring-0:focus {
|
|
890
|
-
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0
|
|
891
|
-
var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
892
|
-
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(var(--tw-ring-offset-width))
|
|
893
|
-
var(--tw-ring-color);
|
|
894
|
-
}
|
|
895
|
-
.focus\:ring-2:focus {
|
|
896
|
-
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0
|
|
897
|
-
var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
898
|
-
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0
|
|
899
|
-
calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
900
|
-
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow),
|
|
901
|
-
var(--tw-shadow, 0 0 #0000);
|
|
902
|
-
}
|
|
903
|
-
.focus\:ring-blue-500:focus {
|
|
904
|
-
--tw-ring-opacity: 1;
|
|
905
|
-
--tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity));
|
|
906
|
-
}
|
|
907
|
-
.dark\:bg-black:is([data-mode='dark'] *) {
|
|
908
|
-
--tw-bg-opacity: 1;
|
|
909
|
-
background-color: rgb(0 0 0 / var(--tw-bg-opacity));
|
|
910
|
-
}
|
|
911
|
-
.dark\:bg-white:is([data-mode='dark'] *) {
|
|
912
|
-
--tw-bg-opacity: 1;
|
|
913
|
-
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
|
914
|
-
}
|
|
915
|
-
.dark\:text-black:is([data-mode='dark'] *) {
|
|
916
|
-
--tw-text-opacity: 1;
|
|
917
|
-
color: rgb(0 0 0 / var(--tw-text-opacity));
|
|
918
|
-
}
|
|
919
|
-
.dark\:text-white:is([data-mode='dark'] *) {
|
|
920
|
-
--tw-text-opacity: 1;
|
|
921
|
-
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
922
|
-
}
|
|
923
|
-
.dark\:focus\:ring-blue-600:focus:is([data-mode='dark'] *) {
|
|
924
|
-
--tw-ring-opacity: 1;
|
|
925
|
-
--tw-ring-color: rgb(37 99 235 / var(--tw-ring-opacity));
|
|
926
|
-
}
|
|
927
|
-
@media (min-width: 480px) {
|
|
928
|
-
.sm\:block {
|
|
929
|
-
display: block;
|
|
930
|
-
}
|
|
931
|
-
.sm\:px-8 {
|
|
932
|
-
padding-left: 2rem;
|
|
933
|
-
padding-right: 2rem;
|
|
934
|
-
}
|
|
935
|
-
.sm\:text-base {
|
|
936
|
-
font-size: 1rem;
|
|
937
|
-
line-height: 1.5rem;
|
|
938
|
-
}
|
|
939
|
-
}
|
|
940
|
-
@media (min-width: 768px) {
|
|
941
|
-
.md\:text-md {
|
|
942
|
-
font-size: 16px;
|
|
943
|
-
}
|
|
944
|
-
}
|
|
File without changes
|