optimized-react-component-library-xyz123 1.1.3 → 1.1.5
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/package.json +3 -2
- package/src/css/FooterStandard.css +167 -0
- package/src/css/darkMode.css +0 -6
- package/src/css/mobileView.css +0 -81
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "optimized-react-component-library-xyz123",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.5",
|
|
4
4
|
"description": "A modern React component library using TypeScript with React 19 support.",
|
|
5
5
|
"main": "dist/index.cjs",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -21,7 +21,8 @@
|
|
|
21
21
|
"src/css/darkMode.css",
|
|
22
22
|
"src/css/mobileView.css",
|
|
23
23
|
"src/css/styles.css",
|
|
24
|
-
"src/css/questions.css"
|
|
24
|
+
"src/css/questions.css",
|
|
25
|
+
"src/css/FooterStandard.css"
|
|
25
26
|
],
|
|
26
27
|
"scripts": {
|
|
27
28
|
"build": "tsup",
|
|
@@ -0,0 +1,167 @@
|
|
|
1
|
+
.pts-footer-container {
|
|
2
|
+
align-items: center;
|
|
3
|
+
width: 100%;
|
|
4
|
+
background-color: var(--background-second);
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.pts-footer-slogan-text-container {
|
|
8
|
+
display: flex;
|
|
9
|
+
align-items: center;
|
|
10
|
+
justify-content: center;
|
|
11
|
+
background-color: var(--background-third);
|
|
12
|
+
height: 50px;
|
|
13
|
+
padding: 0px;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.pts-footer-slogan-text {
|
|
17
|
+
color: var(--main);
|
|
18
|
+
line-height: 2.4rem;
|
|
19
|
+
font-size: 2rem;
|
|
20
|
+
text-box-trim: trim-both;
|
|
21
|
+
margin: 0;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.pts-footer-content {
|
|
25
|
+
display: flex;
|
|
26
|
+
align-items: center;
|
|
27
|
+
width: 100%;
|
|
28
|
+
min-height: 14rem;
|
|
29
|
+
padding: 0.1rem 0;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.pts-footer-logo {
|
|
33
|
+
width: 154.444px;
|
|
34
|
+
height: 40px;
|
|
35
|
+
padding-left: 70px;
|
|
36
|
+
flex-shrink: 0;
|
|
37
|
+
position: relative;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.pts-footer-linkList {
|
|
41
|
+
flex: 1;
|
|
42
|
+
justify-content: center;
|
|
43
|
+
margin-left: -224px;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.pts-footer-linkList ul {
|
|
47
|
+
padding: 0;
|
|
48
|
+
padding-top: 15px;
|
|
49
|
+
margin: 0;
|
|
50
|
+
list-style: none;
|
|
51
|
+
display: flex;
|
|
52
|
+
justify-content: center;
|
|
53
|
+
line-height: 25px;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.pts-footer-linkList a {
|
|
57
|
+
color: var(--main);
|
|
58
|
+
text-underline-offset: 3px;
|
|
59
|
+
white-space: nowrap;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.pts-footer-linkList a span {
|
|
63
|
+
padding-left: 36px;
|
|
64
|
+
padding-right: 36px;
|
|
65
|
+
color: var(--main);
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.pts-footer-container .pts-footer-linkList ul li:not(:last-child)::after {
|
|
69
|
+
content: '';
|
|
70
|
+
width: 1px;
|
|
71
|
+
height: 24px;
|
|
72
|
+
border: 0.5px solid;
|
|
73
|
+
color: var(--main);
|
|
74
|
+
position: absolute;
|
|
75
|
+
box-sizing: border-box;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
/*--------------------FOOTER-----------------*/
|
|
79
|
+
|
|
80
|
+
.pts-footer-slogan-text-container {
|
|
81
|
+
background-color: var(--dark-background-third);
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
@media (max-width: 1085px) {
|
|
85
|
+
.pts-footer-content {
|
|
86
|
+
display: flex;
|
|
87
|
+
height: auto;
|
|
88
|
+
flex-direction: column;
|
|
89
|
+
text-align: left;
|
|
90
|
+
padding: 1.6rem;
|
|
91
|
+
width: 90%;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.pts-footer-logo {
|
|
95
|
+
position: static;
|
|
96
|
+
padding-left: 0;
|
|
97
|
+
margin-left: -8px;
|
|
98
|
+
margin-bottom: 1.6rem;
|
|
99
|
+
align-self: flex-start;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.pts-footer-linkList {
|
|
103
|
+
width: 100%;
|
|
104
|
+
margin-bottom: 8px;
|
|
105
|
+
margin-left: 0;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.pts-footer-linkList ul {
|
|
109
|
+
flex-direction: column;
|
|
110
|
+
gap: 1.6rem;
|
|
111
|
+
padding-top: 0;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.pts-footer-linkList a span {
|
|
115
|
+
padding: 0;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.pts-footer-container .pts-footer-linkList ul li:not(:last-child)::after {
|
|
119
|
+
display: none;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.pts-footer-slogan-text {
|
|
123
|
+
font-size: 1.6rem;
|
|
124
|
+
text-align: center;
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
@media (max-width: 750px) {
|
|
129
|
+
.pts-footer-slogan-text {
|
|
130
|
+
line-height: 2rem;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.pts-footer-logo {
|
|
134
|
+
position: static;
|
|
135
|
+
padding-left: 0;
|
|
136
|
+
margin-bottom: 1.6rem;
|
|
137
|
+
align-self: flex-start;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.pts-footer-linkList {
|
|
141
|
+
width: 100%;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.pts-footer-linkList ul {
|
|
145
|
+
flex-direction: column;
|
|
146
|
+
gap: 1.6rem;
|
|
147
|
+
padding-top: 0;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.pts-footer-linkList a span {
|
|
151
|
+
padding: 0;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.pts-footer-container .pts-footer-linkList ul li:not(:last-child)::after {
|
|
155
|
+
display: none;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.pts-footer-container {
|
|
159
|
+
margin-top: 1.6rem;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
.pts-footer-container {
|
|
163
|
+
height: auto;
|
|
164
|
+
flex-direction: column;
|
|
165
|
+
text-align: left;
|
|
166
|
+
}
|
|
167
|
+
}
|
package/src/css/darkMode.css
CHANGED
|
@@ -368,12 +368,6 @@
|
|
|
368
368
|
color: var(--dark-error) !important;
|
|
369
369
|
}
|
|
370
370
|
|
|
371
|
-
/*--------------------FOOTER-----------------*/
|
|
372
|
-
|
|
373
|
-
.pts-footer-slogan-text-container {
|
|
374
|
-
background-color: var(--dark-background-third);
|
|
375
|
-
}
|
|
376
|
-
|
|
377
371
|
/*-------------MODAL-----------*/
|
|
378
372
|
.pts-modal-content {
|
|
379
373
|
background-color: var(--dark-main);
|
package/src/css/mobileView.css
CHANGED
|
@@ -3,52 +3,10 @@
|
|
|
3
3
|
/********************************************/
|
|
4
4
|
|
|
5
5
|
@media (max-width: 1085px) {
|
|
6
|
-
.pts-footer-content {
|
|
7
|
-
display: flex;
|
|
8
|
-
height: auto;
|
|
9
|
-
flex-direction: column;
|
|
10
|
-
text-align: left;
|
|
11
|
-
padding: 1.6rem;
|
|
12
|
-
width: 90%;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
.pts-footer-logo {
|
|
16
|
-
position: static;
|
|
17
|
-
padding-left: 0;
|
|
18
|
-
margin-left: -8px;
|
|
19
|
-
margin-bottom: 1.6rem;
|
|
20
|
-
align-self: flex-start;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
.pts-footer-linkList {
|
|
24
|
-
width: 100%;
|
|
25
|
-
margin-bottom: 8px;
|
|
26
|
-
margin-left: 0;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
.pts-footer-linkList ul {
|
|
30
|
-
flex-direction: column;
|
|
31
|
-
gap: 1.6rem;
|
|
32
|
-
padding-top: 0;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
.pts-footer-linkList a span {
|
|
36
|
-
padding: 0;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
.pts-footer-container .pts-footer-linkList ul li:not(:last-child)::after {
|
|
40
|
-
display: none;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
6
|
.unsetMargin-Padding {
|
|
44
7
|
margin: 0;
|
|
45
8
|
padding: 0;
|
|
46
9
|
}
|
|
47
|
-
|
|
48
|
-
.pts-footer-slogan-text {
|
|
49
|
-
font-size: 1.6rem;
|
|
50
|
-
text-align: center;
|
|
51
|
-
}
|
|
52
10
|
}
|
|
53
11
|
|
|
54
12
|
/********************************************/
|
|
@@ -258,35 +216,6 @@
|
|
|
258
216
|
padding-bottom: 4px;
|
|
259
217
|
}
|
|
260
218
|
|
|
261
|
-
.pts-footer-slogan-text {
|
|
262
|
-
line-height: 2rem;
|
|
263
|
-
}
|
|
264
|
-
|
|
265
|
-
.pts-footer-logo {
|
|
266
|
-
position: static;
|
|
267
|
-
padding-left: 0;
|
|
268
|
-
margin-bottom: 1.6rem;
|
|
269
|
-
align-self: flex-start;
|
|
270
|
-
}
|
|
271
|
-
|
|
272
|
-
.pts-footer-linkList {
|
|
273
|
-
width: 100%;
|
|
274
|
-
}
|
|
275
|
-
|
|
276
|
-
.pts-footer-linkList ul {
|
|
277
|
-
flex-direction: column;
|
|
278
|
-
gap: 1.6rem;
|
|
279
|
-
padding-top: 0;
|
|
280
|
-
}
|
|
281
|
-
|
|
282
|
-
.pts-footer-linkList a span {
|
|
283
|
-
padding: 0;
|
|
284
|
-
}
|
|
285
|
-
|
|
286
|
-
.pts-footer-container .pts-footer-linkList ul li:not(:last-child)::after {
|
|
287
|
-
display: none;
|
|
288
|
-
}
|
|
289
|
-
|
|
290
219
|
.pts-question-preview {
|
|
291
220
|
flex-direction: column;
|
|
292
221
|
margin-bottom: 1.6rem;
|
|
@@ -322,16 +251,6 @@
|
|
|
322
251
|
.pts-serviceHeadlineAndBody-container .pts-moreinfo-list a {
|
|
323
252
|
margin-top: 1.6rem;
|
|
324
253
|
}
|
|
325
|
-
|
|
326
|
-
.pts-footer-container {
|
|
327
|
-
margin-top: 1.6rem;
|
|
328
|
-
}
|
|
329
|
-
|
|
330
|
-
.pts-footer-container {
|
|
331
|
-
height: auto;
|
|
332
|
-
flex-direction: column;
|
|
333
|
-
text-align: left;
|
|
334
|
-
}
|
|
335
254
|
}
|
|
336
255
|
|
|
337
256
|
/********************************************/
|