optimized-react-component-library-xyz123 0.19.19 → 0.19.21
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.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +41 -37
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +41 -37
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/css/mobileView.css +2 -1
- package/src/css/styles.css +30 -3
package/package.json
CHANGED
package/src/css/mobileView.css
CHANGED
package/src/css/styles.css
CHANGED
|
@@ -64,7 +64,8 @@ main {
|
|
|
64
64
|
h1:focus:focus-visible,
|
|
65
65
|
h2:focus:focus-visible,
|
|
66
66
|
#pts-form-id-error-summary:focus:focus-visible,
|
|
67
|
-
#pts-error-summary:focus:focus-visible
|
|
67
|
+
#pts-error-summary:focus:focus-visible,
|
|
68
|
+
#pts-cookie-banner-placeholder:focus:focus-visible {
|
|
68
69
|
outline: none !important;
|
|
69
70
|
border: none;
|
|
70
71
|
}
|
|
@@ -727,18 +728,44 @@ textarea:focus-visible,
|
|
|
727
728
|
line-height: 25px;
|
|
728
729
|
}
|
|
729
730
|
|
|
730
|
-
.pts-footer-linkList a
|
|
731
|
+
.pts-footer-linkList a,
|
|
732
|
+
.pts-footer-linkList button {
|
|
731
733
|
color: var(--main);
|
|
732
734
|
text-underline-offset: 3px;
|
|
733
735
|
white-space: nowrap;
|
|
734
736
|
}
|
|
735
737
|
|
|
736
|
-
.pts-footer-linkList
|
|
738
|
+
.pts-footer-linkList button{
|
|
739
|
+
background: none;
|
|
740
|
+
border: none;
|
|
741
|
+
padding: 0;
|
|
742
|
+
margin: 0;
|
|
743
|
+
font: inherit;
|
|
744
|
+
color: inherit;
|
|
745
|
+
text-align: inherit;
|
|
746
|
+
line-height: normal;
|
|
747
|
+
cursor: pointer;
|
|
748
|
+
outline: none;
|
|
749
|
+
white-space: nowrap;
|
|
750
|
+
|
|
751
|
+
}
|
|
752
|
+
|
|
753
|
+
.pts-footer-linkList a span,
|
|
754
|
+
.pts-footer-linkList button span {
|
|
737
755
|
padding-left: 36px;
|
|
738
756
|
padding-right: 36px;
|
|
739
757
|
color: var(--main);
|
|
740
758
|
}
|
|
741
759
|
|
|
760
|
+
.pts-footer-linkList button span {
|
|
761
|
+
text-decoration: underline;
|
|
762
|
+
text-underline-offset: 3px;
|
|
763
|
+
}
|
|
764
|
+
|
|
765
|
+
.pts-footer-linkList button:hover span {
|
|
766
|
+
text-decoration: underline 0.2rem;
|
|
767
|
+
}
|
|
768
|
+
|
|
742
769
|
.pts-footer-container .pts-footer-linkList ul li:not(:last-child)::after {
|
|
743
770
|
content: '';
|
|
744
771
|
width: 1px;
|