ui.shipaid.com 0.2.13 → 0.2.14-beta.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/widget.es.js
CHANGED
|
@@ -913,17 +913,17 @@ const styles = i$1`
|
|
|
913
913
|
|
|
914
914
|
/* Widget */
|
|
915
915
|
.shipaid-prompt {
|
|
916
|
-
width: 400px;
|
|
916
|
+
width: var(--shipaid-prompt-width, 400px);
|
|
917
917
|
max-width: 100%;
|
|
918
918
|
display: flex;
|
|
919
919
|
flex-direction: column;
|
|
920
920
|
gap: 1rem;
|
|
921
|
-
margin: 2rem 0px 4rem auto;
|
|
921
|
+
margin: var(--shipaid-prompt-margin, 2rem 0px 4rem auto);
|
|
922
922
|
}
|
|
923
923
|
|
|
924
924
|
@media (max-width: 600px) {
|
|
925
925
|
.shipaid-prompt {
|
|
926
|
-
width: 100
|
|
926
|
+
width: var(--shipaid-prompt-width-mobile, 100%);
|
|
927
927
|
}
|
|
928
928
|
}
|
|
929
929
|
|
package/dist/widget.iife.js
CHANGED
|
@@ -273,17 +273,17 @@ function ht(t,e,i){return t?e():null==i?void 0:i()}const ct=h`
|
|
|
273
273
|
|
|
274
274
|
/* Widget */
|
|
275
275
|
.shipaid-prompt {
|
|
276
|
-
width: 400px;
|
|
276
|
+
width: var(--shipaid-prompt-width, 400px);
|
|
277
277
|
max-width: 100%;
|
|
278
278
|
display: flex;
|
|
279
279
|
flex-direction: column;
|
|
280
280
|
gap: 1rem;
|
|
281
|
-
margin: 2rem 0px 4rem auto;
|
|
281
|
+
margin: var(--shipaid-prompt-margin, 2rem 0px 4rem auto);
|
|
282
282
|
}
|
|
283
283
|
|
|
284
284
|
@media (max-width: 600px) {
|
|
285
285
|
.shipaid-prompt {
|
|
286
|
-
width: 100
|
|
286
|
+
width: var(--shipaid-prompt-width-mobile, 100%);
|
|
287
287
|
}
|
|
288
288
|
}
|
|
289
289
|
|
package/dist/widget.umd.js
CHANGED
|
@@ -273,17 +273,17 @@ function ht(t,e,i){return t?e():null==i?void 0:i()}const ct=h`
|
|
|
273
273
|
|
|
274
274
|
/* Widget */
|
|
275
275
|
.shipaid-prompt {
|
|
276
|
-
width: 400px;
|
|
276
|
+
width: var(--shipaid-prompt-width, 400px);
|
|
277
277
|
max-width: 100%;
|
|
278
278
|
display: flex;
|
|
279
279
|
flex-direction: column;
|
|
280
280
|
gap: 1rem;
|
|
281
|
-
margin: 2rem 0px 4rem auto;
|
|
281
|
+
margin: var(--shipaid-prompt-margin, 2rem 0px 4rem auto);
|
|
282
282
|
}
|
|
283
283
|
|
|
284
284
|
@media (max-width: 600px) {
|
|
285
285
|
.shipaid-prompt {
|
|
286
|
-
width: 100
|
|
286
|
+
width: var(--shipaid-prompt-width-mobile, 100%);
|
|
287
287
|
}
|
|
288
288
|
}
|
|
289
289
|
|