optimized-react-component-library-xyz123 0.1.140 → 0.1.142
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.js +5 -8
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -8
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/css/mobileView.css +5 -1
- package/src/css/styles.css +13 -1
package/package.json
CHANGED
package/src/css/mobileView.css
CHANGED
package/src/css/styles.css
CHANGED
|
@@ -59,6 +59,15 @@ main {
|
|
|
59
59
|
flex: 1;
|
|
60
60
|
}
|
|
61
61
|
|
|
62
|
+
#main-content:focus:focus-visible,
|
|
63
|
+
h1:focus:focus-visible,
|
|
64
|
+
h2:focus:focus-visible,
|
|
65
|
+
#pts-form-id-error-summary:focus:focus-visible,
|
|
66
|
+
#pts-error-summary:focus:focus-visible {
|
|
67
|
+
outline: none !important;
|
|
68
|
+
border: none;
|
|
69
|
+
}
|
|
70
|
+
|
|
62
71
|
h1,
|
|
63
72
|
h2,
|
|
64
73
|
h3 {
|
|
@@ -136,7 +145,6 @@ section {
|
|
|
136
145
|
border-radius: 0.4rem;
|
|
137
146
|
margin-left: 0.8rem;
|
|
138
147
|
margin-right: 0.8rem;
|
|
139
|
-
padding-bottom: 0;
|
|
140
148
|
border-bottom-left-radius: 0;
|
|
141
149
|
border-bottom-right-radius: 0;
|
|
142
150
|
}
|
|
@@ -1691,3 +1699,7 @@ textarea:focus-visible,
|
|
|
1691
1699
|
}
|
|
1692
1700
|
/* ---------- END FILE UPLOAD ---------- */
|
|
1693
1701
|
|
|
1702
|
+
.unsetMargin-Padding{
|
|
1703
|
+
margin:0;
|
|
1704
|
+
padding:0;
|
|
1705
|
+
}
|