optimized-react-component-library-xyz123 0.10.9 → 0.11.1
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/index.css +0 -33
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +1 -9
- package/dist/index.d.ts +1 -9
- package/dist/index.js +244 -321
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +245 -321
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/css/darkMode.css +10 -0
- package/src/css/mobileView.css +9 -0
- package/src/css/styles.css +20 -2
package/package.json
CHANGED
package/src/css/darkMode.css
CHANGED
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
--dark-info: #808080;
|
|
8
8
|
--dark-orientation-active:#F4BF56;
|
|
9
9
|
--dark-background-second:#200827;
|
|
10
|
+
--dark-background-third:#747474;
|
|
10
11
|
}
|
|
11
12
|
|
|
12
13
|
@media (prefers-color-scheme: dark) {
|
|
@@ -337,6 +338,15 @@
|
|
|
337
338
|
.errorSummary-text {
|
|
338
339
|
color: var(--dark-error) !important;
|
|
339
340
|
}
|
|
341
|
+
|
|
342
|
+
/*--------------------FOOTER-----------------*/
|
|
343
|
+
|
|
344
|
+
.pts-footer-slogan-text-container{
|
|
345
|
+
background-color: var(--dark-background-third);
|
|
346
|
+
}
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
|
|
340
350
|
|
|
341
351
|
/*-------------MODAL-----------*/
|
|
342
352
|
.pts-modal-content{
|
package/src/css/mobileView.css
CHANGED
|
@@ -225,6 +225,15 @@
|
|
|
225
225
|
padding-bottom: 4px;
|
|
226
226
|
}
|
|
227
227
|
|
|
228
|
+
.pts-footer-slogan-text-container{
|
|
229
|
+
padding: 2.4rem 1.6rem;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
.pts-footer-slogan-text{
|
|
233
|
+
line-height: 2rem;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
|
|
228
237
|
.pts-footer-logo {
|
|
229
238
|
position: static;
|
|
230
239
|
padding-left: 0;
|
package/src/css/styles.css
CHANGED
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
--info: #545454;
|
|
12
12
|
--orientation-active: #dc7d0a;
|
|
13
13
|
--background-second: #200827;
|
|
14
|
+
--background-third: #414141;
|
|
14
15
|
}
|
|
15
16
|
|
|
16
17
|
body,
|
|
@@ -650,17 +651,34 @@ textarea:focus-visible,
|
|
|
650
651
|
/* ---------- FOOTER ---------- */
|
|
651
652
|
|
|
652
653
|
.pts-footer-container {
|
|
653
|
-
display: flex;
|
|
654
|
-
min-height: 14rem;
|
|
655
654
|
align-items: center;
|
|
656
655
|
width: 100%;
|
|
657
656
|
background-color: var(--background-second);
|
|
658
657
|
}
|
|
659
658
|
|
|
659
|
+
.pts-footer-slogan-text-container{
|
|
660
|
+
display: flex;
|
|
661
|
+
align-items: center;
|
|
662
|
+
justify-content: center;
|
|
663
|
+
background-color: var(--background-third);
|
|
664
|
+
padding: 1.8rem 2.4rem;
|
|
665
|
+
}
|
|
666
|
+
|
|
667
|
+
.pts-footer-slogan-text{
|
|
668
|
+
color: var(--main);
|
|
669
|
+
line-height: 2.4rem;
|
|
670
|
+
font-size: 2rem;
|
|
671
|
+
text-box-trim: trim-both;
|
|
672
|
+
margin: 0;
|
|
673
|
+
|
|
674
|
+
}
|
|
675
|
+
|
|
660
676
|
.pts-footer-content{
|
|
661
677
|
display: flex;
|
|
662
678
|
align-items: center;
|
|
663
679
|
width: 100%;
|
|
680
|
+
min-height: 14rem;
|
|
681
|
+
padding: 0.1rem 0;
|
|
664
682
|
}
|
|
665
683
|
|
|
666
684
|
.pts-footer-logo {
|