@gofynd/theme-template 2.0.3 → 2.0.4
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 +57 -9
- package/dist/index.js +1 -1
- package/dist/page-layouts/single-checkout/payment/card-form.css +33 -9
- package/dist/page-layouts/single-checkout/payment/card-form.js +1 -1
- package/dist/page-layouts/single-checkout/payment/checkout-payment-content.css +33 -9
- package/dist/page-layouts/single-checkout/payment/checkout-payment-content.js +1 -1
- package/dist/page-layouts/single-checkout/payment/checkout-payment.css +57 -9
- package/dist/page-layouts/single-checkout/payment/checkout-payment.js +1 -1
- package/dist/page-layouts/single-checkout/payment/sticky-pay-now/sticky-pay-now.css +3 -0
- package/dist/page-layouts/single-checkout/payment/sticky-pay-now/sticky-pay-now.js +1 -1
- package/dist/page-layouts/single-checkout/shipment/single-page-shipment.css +3 -0
- package/dist/page-layouts/single-checkout/shipment/single-page-shipment.js +1 -1
- package/dist/pages/checkout/checkout.css +57 -9
- package/dist/pages/checkout/checkout.js +1 -1
- package/dist/pages/checkout/index.css +57 -9
- package/dist/pages/checkout/index.js +1 -1
- package/dist/pages/index.css +57 -9
- package/dist/pages/index.js +1 -1
- package/dist/pages/order/order-tracking-details/order-tracking-details.css +57 -0
- package/dist/pages/order/order-tracking-details/order-tracking-details.js +1 -1
- package/package.json +1 -1
|
@@ -337,6 +337,10 @@ h5,
|
|
|
337
337
|
.checkout-payment-content__container___HusGh {
|
|
338
338
|
background: var(--pageBackground, #f8f8f8);
|
|
339
339
|
}
|
|
340
|
+
.checkout-payment-content__container___HusGh.checkout-payment-content__unsetBorder___iXIU7 {
|
|
341
|
+
border: unset;
|
|
342
|
+
padding-top: 0;
|
|
343
|
+
}
|
|
340
344
|
@media only screen and (min-width: 769px) {
|
|
341
345
|
.checkout-payment-content__container___HusGh {
|
|
342
346
|
display: flex;
|
|
@@ -471,6 +475,7 @@ h5,
|
|
|
471
475
|
font-size: 14px;
|
|
472
476
|
font-weight: 500;
|
|
473
477
|
line-height: 140%;
|
|
478
|
+
height: 18px;
|
|
474
479
|
}
|
|
475
480
|
@media only screen and (max-width: 768px) {
|
|
476
481
|
.checkout-payment-content__container___HusGh .checkout-payment-content__navigationLink___jrTvz .checkout-payment-content__linkWrapper___rbKAK .checkout-payment-content__link___ZIR_i .checkout-payment-content__modeName___oABQ2 {
|
|
@@ -858,6 +863,11 @@ h5,
|
|
|
858
863
|
display: flex;
|
|
859
864
|
flex-direction: column;
|
|
860
865
|
}
|
|
866
|
+
@media only screen and (max-width: 480px) {
|
|
867
|
+
.checkout-payment-content__container___HusGh .checkout-payment-content__cardTab___uYvQv .checkout-payment-content__newCardWrapper___p35go .checkout-payment-content__newCard___gXKVk.checkout-payment-content__addPaddingBottom___Qc5bl {
|
|
868
|
+
padding-bottom: 24px;
|
|
869
|
+
}
|
|
870
|
+
}
|
|
861
871
|
.checkout-payment-content__container___HusGh .checkout-payment-content__cardTab___uYvQv .checkout-payment-content__newCardWrapper___p35go .checkout-payment-content__newCard___gXKVk .checkout-payment-content__cardInputWrapper___YqlSP {
|
|
862
872
|
display: flex;
|
|
863
873
|
flex-direction: column;
|
|
@@ -1009,12 +1019,12 @@ h5,
|
|
|
1009
1019
|
margin-bottom: 16px;
|
|
1010
1020
|
}
|
|
1011
1021
|
.checkout-payment-content__container___HusGh .checkout-payment-content__cardTab___uYvQv .checkout-payment-content__newCardWrapper___p35go .checkout-payment-content__saveNewCard___cPi2y {
|
|
1012
|
-
padding:
|
|
1013
|
-
border-radius:
|
|
1022
|
+
padding: 16px;
|
|
1023
|
+
border-radius: var(--buttonRadius, 0px);
|
|
1014
1024
|
background-color: var(--primaryColor);
|
|
1015
1025
|
border: none;
|
|
1016
1026
|
width: 100%;
|
|
1017
|
-
margin-top:
|
|
1027
|
+
margin-top: 16px;
|
|
1018
1028
|
font-weight: 600;
|
|
1019
1029
|
font-size: 14px;
|
|
1020
1030
|
text-transform: uppercase;
|
|
@@ -1023,12 +1033,12 @@ h5,
|
|
|
1023
1033
|
line-height: 140%;
|
|
1024
1034
|
}
|
|
1025
1035
|
.checkout-payment-content__container___HusGh .checkout-payment-content__cardTab___uYvQv .checkout-payment-content__newCardWrapper___p35go .checkout-payment-content__saveNewCard___cPi2y[disabled] {
|
|
1026
|
-
padding:
|
|
1027
|
-
border-radius:
|
|
1036
|
+
padding: 16px;
|
|
1037
|
+
border-radius: var(--buttonRadius, 0px);
|
|
1028
1038
|
background-color: var(--primaryColor);
|
|
1029
1039
|
border: none;
|
|
1030
1040
|
width: 100%;
|
|
1031
|
-
margin-top:
|
|
1041
|
+
margin-top: 16px;
|
|
1032
1042
|
font-weight: 600;
|
|
1033
1043
|
font-size: 14px;
|
|
1034
1044
|
text-transform: uppercase;
|
|
@@ -1199,7 +1209,7 @@ h5,
|
|
|
1199
1209
|
.checkout-payment-content__container___HusGh .checkout-payment-content__modeOption___onKtJ .checkout-payment-content__modeItemWrapper___IlJf3 .checkout-payment-content__modeItem___M6Obf .checkout-payment-content__moreModeArrow___yBQbk {
|
|
1200
1210
|
transform: rotate(270deg);
|
|
1201
1211
|
}
|
|
1202
|
-
[dir=
|
|
1212
|
+
[dir="rtl"] .checkout-payment-content__container___HusGh .checkout-payment-content__modeOption___onKtJ .checkout-payment-content__modeItemWrapper___IlJf3 .checkout-payment-content__modeItem___M6Obf .checkout-payment-content__moreModeArrow___yBQbk {
|
|
1203
1213
|
transform: rotate(90deg);
|
|
1204
1214
|
}
|
|
1205
1215
|
.checkout-payment-content__container___HusGh .checkout-payment-content__modeOption___onKtJ .checkout-payment-content__modeItemWrapper___IlJf3 .checkout-payment-content__modeItem___M6Obf .checkout-payment-content__otherModeArrow___ulm30 {
|
|
@@ -1276,6 +1286,12 @@ h5,
|
|
|
1276
1286
|
align-items: center;
|
|
1277
1287
|
border: 1px solid var(--dividerStokes);
|
|
1278
1288
|
border-radius: 100px;
|
|
1289
|
+
width: 38px;
|
|
1290
|
+
height: 38px;
|
|
1291
|
+
padding: 8px 4px;
|
|
1292
|
+
}
|
|
1293
|
+
.checkout-payment-content__container___HusGh .checkout-payment-content__upiApp___M2sjF .checkout-payment-content__logo___jNLmQ:last-child {
|
|
1294
|
+
padding: unset;
|
|
1279
1295
|
}
|
|
1280
1296
|
.checkout-payment-content__container___HusGh .checkout-payment-content__upiApp___M2sjF .checkout-payment-content__displayName___dLKMP {
|
|
1281
1297
|
flex: 1;
|
|
@@ -1502,7 +1518,8 @@ h5,
|
|
|
1502
1518
|
text-transform: uppercase;
|
|
1503
1519
|
cursor: pointer;
|
|
1504
1520
|
line-height: 140%;
|
|
1505
|
-
margin:
|
|
1521
|
+
margin-top: 16px;
|
|
1522
|
+
margin-bottom: 24px;
|
|
1506
1523
|
}
|
|
1507
1524
|
.checkout-payment-content__container___HusGh .checkout-payment-content__upiPay___CycYi .checkout-payment-content__payBtn___dgcAp:hover {
|
|
1508
1525
|
background-color: var(--buttonPrimaryL1, #71653a);
|
|
@@ -1939,7 +1956,7 @@ h5,
|
|
|
1939
1956
|
display: flex;
|
|
1940
1957
|
align-items: center;
|
|
1941
1958
|
}
|
|
1942
|
-
[dir=
|
|
1959
|
+
[dir="rtl"] .checkout-payment-content__moreModeIcon___Hjipo {
|
|
1943
1960
|
transform: rotate(90deg);
|
|
1944
1961
|
}
|
|
1945
1962
|
.checkout-payment-content__moreModeIcon___Hjipo svg {
|
|
@@ -2037,6 +2054,10 @@ h5,
|
|
|
2037
2054
|
display: none;
|
|
2038
2055
|
}
|
|
2039
2056
|
}
|
|
2057
|
+
.checkout-payment-content__mopIcon___koORc {
|
|
2058
|
+
width: 24px;
|
|
2059
|
+
height: 24px;
|
|
2060
|
+
}
|
|
2040
2061
|
|
|
2041
2062
|
/**color by character**/
|
|
2042
2063
|
/** Font family **/
|
|
@@ -2937,6 +2958,9 @@ h5,
|
|
|
2937
2958
|
.sticky-pay-now__checkoutButton___mtO42 {
|
|
2938
2959
|
gap: 12px;
|
|
2939
2960
|
}
|
|
2961
|
+
.sticky-pay-now__buttonWidth___nKraw {
|
|
2962
|
+
width: 100%;
|
|
2963
|
+
}
|
|
2940
2964
|
|
|
2941
2965
|
/**color by character**/
|
|
2942
2966
|
/** Font family **/
|