@nuskin/shipping-address-form 1.7.6 → 1.7.7
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.
|
@@ -15,6 +15,8 @@
|
|
|
15
15
|
--nsal-error-gap: 2px;
|
|
16
16
|
--nsal-input-padding-y: 8px;
|
|
17
17
|
--nsal-input-padding-x: 8px;
|
|
18
|
+
--nsal-result-list-gap: 4px;
|
|
19
|
+
--nsal-result-list-z-index: 1;
|
|
18
20
|
color: var(--nsal-text-color);
|
|
19
21
|
}
|
|
20
22
|
|
|
@@ -151,7 +153,7 @@
|
|
|
151
153
|
|
|
152
154
|
.ns-address-lookup__list {
|
|
153
155
|
position: absolute;
|
|
154
|
-
z-index:
|
|
156
|
+
z-index: var(--nsal-result-list-z-index);
|
|
155
157
|
list-style: none;
|
|
156
158
|
margin: 0;
|
|
157
159
|
padding: 0;
|
|
@@ -163,14 +165,14 @@
|
|
|
163
165
|
}
|
|
164
166
|
|
|
165
167
|
.ns-address-lookup__list--suggestions {
|
|
166
|
-
top: 100
|
|
168
|
+
top: calc(100% - var(--nsal-field-gap) + var(--nsal-result-list-gap));
|
|
167
169
|
left: 5px;
|
|
168
170
|
right: 5px;
|
|
169
171
|
max-height: 200px;
|
|
170
172
|
}
|
|
171
173
|
|
|
172
174
|
.ns-address-lookup__list--validation-inline {
|
|
173
|
-
top: 100
|
|
175
|
+
top: calc(100% - var(--nsal-field-gap) + var(--nsal-result-list-gap));
|
|
174
176
|
left: 5px;
|
|
175
177
|
right: 5px;
|
|
176
178
|
max-height: 250px;
|