sccoreui 3.3.2 → 3.3.4
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/App.css +104 -97
- package/dist/App.js +0 -1
- package/dist/types/App.d.ts +0 -1
- package/package.json +1 -1
package/dist/App.css
CHANGED
|
@@ -1,98 +1,105 @@
|
|
|
1
1
|
@import url("./assets/theme.css");
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
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
|
-
|
|
2
|
+
@import url("./assets/sccoreui.css");
|
|
3
|
+
@import url("./assets/sccoreicons.css");
|
|
4
|
+
@import url("./assets/flex.css");
|
|
5
|
+
:root {
|
|
6
|
+
--fw-600: 600;
|
|
7
|
+
--fw-400: 400;
|
|
8
|
+
--fs-24: 24px;
|
|
9
|
+
--fs-18: 18px;
|
|
10
|
+
--fs-16: 16px;
|
|
11
|
+
--lh: 24px;
|
|
12
|
+
--fs-14: 14px;
|
|
13
|
+
--grey-bg: #101828;
|
|
14
|
+
--border-none: border-none;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
@font-face {
|
|
18
|
+
font-family: "Lato-400";
|
|
19
|
+
font-weight: 400;
|
|
20
|
+
src: url("./assets/fonts/Lato-Regular.ttf") format("truetype");
|
|
21
|
+
}
|
|
22
|
+
@font-face {
|
|
23
|
+
font-family: "Lato-600";
|
|
24
|
+
font-weight: 600;
|
|
25
|
+
src: url("./assets/fonts/Lato-Regular.ttf") format("truetype");
|
|
26
|
+
}
|
|
27
|
+
body {
|
|
28
|
+
font-family: "Lato-400", sans-serif;
|
|
29
|
+
-webkit-font-smoothing: antialiased;
|
|
30
|
+
-moz-osx-font-smoothing: grayscale;
|
|
31
|
+
line-height: var(--lh);
|
|
32
|
+
padding: 0;
|
|
33
|
+
margin: 0;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
code {
|
|
37
|
+
font-family: "Lato-400", monospace;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
h1 {
|
|
41
|
+
font-size: var(--fs-24);
|
|
42
|
+
font-weight: var(--fw-600);
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
h2 {
|
|
46
|
+
font-size: var(--fs-18);
|
|
47
|
+
font-weight: var(--fw-600);
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
h3 {
|
|
51
|
+
font-size: var(--fs-16);
|
|
52
|
+
font-weight: var(--fw-400);
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.progress-container {
|
|
56
|
+
isolation: isolate;
|
|
57
|
+
}
|
|
58
|
+
.progress-container::before {
|
|
59
|
+
content: "";
|
|
60
|
+
background-color: var(--gray-200);
|
|
61
|
+
position: absolute;
|
|
62
|
+
z-index: -1;
|
|
63
|
+
}
|
|
64
|
+
.progress-container.horizontal::before {
|
|
65
|
+
height: 2px;
|
|
66
|
+
width: 100%;
|
|
67
|
+
top: 11%;
|
|
68
|
+
}
|
|
69
|
+
.progress-container.vertical::before {
|
|
70
|
+
height: 100%;
|
|
71
|
+
width: 2px;
|
|
72
|
+
left: 5%;
|
|
73
|
+
top: 0;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.progressbar {
|
|
77
|
+
z-index: -1;
|
|
78
|
+
transition: all 0.6s ease;
|
|
79
|
+
}
|
|
80
|
+
.progressbar.horizontal {
|
|
81
|
+
left: 0;
|
|
82
|
+
height: 2px;
|
|
83
|
+
top: 11%;
|
|
84
|
+
}
|
|
85
|
+
.progressbar.vertical {
|
|
86
|
+
width: 2px;
|
|
87
|
+
left: 5%;
|
|
88
|
+
top: 0;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.progress-step-item.horizontal:nth-of-type(1) {
|
|
92
|
+
transform: translateX(-50%);
|
|
93
|
+
}
|
|
94
|
+
.progress-step-item.horizontal:last-child {
|
|
95
|
+
transform: translateX(50%);
|
|
96
|
+
}
|
|
97
|
+
.progress-step-item.vertical {
|
|
98
|
+
transform: translateY(50%);
|
|
99
|
+
}
|
|
100
|
+
.progress-step-item.vertical:nth-of-type(1) {
|
|
101
|
+
transform: translateY(-5%);
|
|
102
|
+
}
|
|
103
|
+
.progress-step-item.vertical:last-child {
|
|
104
|
+
transform: translateY(100%);
|
|
105
|
+
}
|
package/dist/App.js
CHANGED
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
4
|
// import Home from './pages/home';
|
|
5
|
-
require("./App.css");
|
|
6
5
|
const App = () => {
|
|
7
6
|
return ((0, jsx_runtime_1.jsx)("div", { children: (0, jsx_runtime_1.jsx)("div", {}) }));
|
|
8
7
|
};
|
package/dist/types/App.d.ts
CHANGED