optimized-react-component-library-xyz123 2.12.8 → 2.12.9
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/darkMode.css +10 -0
- package/src/css/mobileView.css +10 -2
- package/src/css/styles.css +10 -5
package/package.json
CHANGED
package/src/css/darkMode.css
CHANGED
|
@@ -73,6 +73,15 @@
|
|
|
73
73
|
fill: var(--dark-text);
|
|
74
74
|
}
|
|
75
75
|
|
|
76
|
+
.pts-header-content {
|
|
77
|
+
background-color: var(--dark-background);
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.pts-header-logo-container,
|
|
81
|
+
.pts-header-navigation-container {
|
|
82
|
+
background: var(--dark-background-second);
|
|
83
|
+
}
|
|
84
|
+
|
|
76
85
|
.pts-languageButton {
|
|
77
86
|
color: var(--dark-text);
|
|
78
87
|
}
|
|
@@ -87,6 +96,7 @@
|
|
|
87
96
|
.pts-navigation-header-headline-container {
|
|
88
97
|
border-color: var(--dark-background-third) !important;
|
|
89
98
|
}
|
|
99
|
+
|
|
90
100
|
.pts-navigation-header-nav-container button svg path,
|
|
91
101
|
.pts-navigation-header-nav-container button svg line {
|
|
92
102
|
color: var(--dark-text);
|
package/src/css/mobileView.css
CHANGED
|
@@ -25,6 +25,10 @@
|
|
|
25
25
|
align-items: center;
|
|
26
26
|
}
|
|
27
27
|
|
|
28
|
+
.pts-site-headline {
|
|
29
|
+
margin-bottom: unset;
|
|
30
|
+
}
|
|
31
|
+
|
|
28
32
|
.pts-site-headline,
|
|
29
33
|
.pts-navigation-header-headline-container p {
|
|
30
34
|
font-size: 1.6rem;
|
|
@@ -36,6 +40,7 @@
|
|
|
36
40
|
justify-content: center;
|
|
37
41
|
height: 4.8rem;
|
|
38
42
|
gap: 0.6rem;
|
|
43
|
+
margin-bottom: unset;
|
|
39
44
|
}
|
|
40
45
|
|
|
41
46
|
.pts-navigation-header-nav-container {
|
|
@@ -90,8 +95,8 @@
|
|
|
90
95
|
/*--- 1 knapp: höger ---*/
|
|
91
96
|
.pts-navigation-header-nav-container:not(:has(.pts-secondary-button:nth-child(2)))
|
|
92
97
|
.pts-secondary-button {
|
|
93
|
-
grid-column:
|
|
94
|
-
justify-self:
|
|
98
|
+
grid-column: 2;
|
|
99
|
+
justify-self: center;
|
|
95
100
|
}
|
|
96
101
|
|
|
97
102
|
.pts-navigation-close-button {
|
|
@@ -248,10 +253,13 @@
|
|
|
248
253
|
.pts-header-navigation-container {
|
|
249
254
|
align-items: center;
|
|
250
255
|
justify-content: center;
|
|
256
|
+
margin-top: 0.4rem;
|
|
257
|
+
margin-bottom: unset;
|
|
251
258
|
}
|
|
252
259
|
|
|
253
260
|
.pts-languageButton {
|
|
254
261
|
margin: 0.4rem 0;
|
|
262
|
+
margin-left: -10px;
|
|
255
263
|
}
|
|
256
264
|
|
|
257
265
|
.languageIcon {
|
package/src/css/styles.css
CHANGED
|
@@ -230,10 +230,12 @@ input:focus-visible:-webkit-autofill {
|
|
|
230
230
|
.pts-header-content {
|
|
231
231
|
width: 100%;
|
|
232
232
|
display: flex;
|
|
233
|
+
background-color: var(--background);
|
|
233
234
|
}
|
|
234
235
|
|
|
235
236
|
.pts-header-logo-container {
|
|
236
237
|
height: 4rem;
|
|
238
|
+
background: var(--main);
|
|
237
239
|
}
|
|
238
240
|
|
|
239
241
|
.pts-header-logo svg {
|
|
@@ -246,11 +248,13 @@ input:focus-visible:-webkit-autofill {
|
|
|
246
248
|
justify-content: flex-end;
|
|
247
249
|
width: 100%;
|
|
248
250
|
align-items: flex-end;
|
|
251
|
+
margin-bottom: -1.6rem;
|
|
252
|
+
background: var(--main);
|
|
249
253
|
}
|
|
250
254
|
|
|
251
255
|
.languageIcon {
|
|
252
256
|
position: relative;
|
|
253
|
-
margin-top: 0.
|
|
257
|
+
margin-top: 0.4rem;
|
|
254
258
|
padding-right: 0.6rem;
|
|
255
259
|
top: 0.01rem;
|
|
256
260
|
}
|
|
@@ -260,10 +264,6 @@ input:focus-visible:-webkit-autofill {
|
|
|
260
264
|
height: 1.6rem;
|
|
261
265
|
}
|
|
262
266
|
|
|
263
|
-
.pts-languageButton-text:hover {
|
|
264
|
-
text-decoration: underline 0.2rem;
|
|
265
|
-
}
|
|
266
|
-
|
|
267
267
|
/**Header with navigation**/
|
|
268
268
|
|
|
269
269
|
.pts-navigation-header-container {
|
|
@@ -311,6 +311,10 @@ input:focus-visible:-webkit-autofill {
|
|
|
311
311
|
bottom: -1px;
|
|
312
312
|
}
|
|
313
313
|
|
|
314
|
+
.pts-site-headline {
|
|
315
|
+
margin-bottom: -1.6rem;
|
|
316
|
+
}
|
|
317
|
+
|
|
314
318
|
.pts-navigation-header-nav-container .pts-open-icon {
|
|
315
319
|
position: relative;
|
|
316
320
|
top: 4px;
|
|
@@ -335,6 +339,7 @@ input:focus-visible:-webkit-autofill {
|
|
|
335
339
|
width: 100%;
|
|
336
340
|
align-items: flex-end;
|
|
337
341
|
height: 5rem;
|
|
342
|
+
margin-bottom: -1.6rem;
|
|
338
343
|
}
|
|
339
344
|
|
|
340
345
|
.pts-navigation-header-nav-container button {
|