optimized-react-component-library-xyz123 1.1.4 → 1.1.6
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 +1 -1
- package/src/css/FooterStandard.css +88 -69
- package/src/css/darkMode.css +0 -6
- package/src/css/mobileView.css +0 -81
- package/src/css/styles.css +2 -0
package/package.json
CHANGED
|
@@ -75,74 +75,93 @@
|
|
|
75
75
|
box-sizing: border-box;
|
|
76
76
|
}
|
|
77
77
|
|
|
78
|
-
|
|
78
|
+
/*--------------------FOOTER-----------------*/
|
|
79
79
|
|
|
80
|
-
.pts-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
.pts-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
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
|
+
}
|
|
148
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
|
/********************************************/
|