@gofynd/theme-template 3.2.15 → 3.2.17
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/components/accordion/accordion.css +8 -0
- package/dist/components/accordion/accordion.js +1 -1
- package/dist/components/address-form/v2/address-form.js +1 -1
- package/dist/components/blog-footer/blog-footer.js +1 -1
- package/dist/components/blog-page/blog-page.js +1 -1
- package/dist/components/filter-modal/filter-modal.js +1 -1
- package/dist/components/index.css +32 -24
- package/dist/components/index.js +1 -1
- package/dist/components/order-shipment/order-shipment.css +8 -0
- package/dist/components/order-shipment/order-shipment.js +1 -1
- package/dist/components/product-card/product-card.css +3 -0
- package/dist/components/product-card/product-card.js +1 -1
- package/dist/index.css +125 -27
- package/dist/index.js +1 -1
- package/dist/page-layouts/cart/Components/chip-item/chip-item.css +8 -0
- package/dist/page-layouts/cart/Components/chip-item/chip-item.js +1 -1
- package/dist/page-layouts/cart/Components/coupon/coupon.css +8 -24
- package/dist/page-layouts/cart/Components/coupon/coupon.js +1 -1
- package/dist/page-layouts/cart/Components/delivery-location/delivery-location.css +24 -0
- package/dist/page-layouts/cart/Components/delivery-location/delivery-location.js +1 -1
- package/dist/page-layouts/cart/Components/remove-cart-item/remove-cart-item.css +5 -3
- package/dist/page-layouts/cart/Components/sticky-footer/sticky-footer.js +1 -1
- package/dist/page-layouts/compare/compare.css +3 -0
- package/dist/page-layouts/compare/compare.js +1 -1
- package/dist/page-layouts/plp/Components/filter-item/filter-item.js +1 -1
- package/dist/page-layouts/plp/Components/filter-list/filter-list.js +1 -1
- package/dist/page-layouts/single-checkout/address/single-address-content.css +45 -0
- package/dist/page-layouts/single-checkout/address/single-address-content.js +1 -1
- package/dist/page-layouts/single-checkout/address/single-address-header.css +3 -0
- package/dist/page-layouts/single-checkout/address/single-address-header.js +1 -1
- package/dist/page-layouts/single-checkout/address/single-address.css +48 -0
- package/dist/page-layouts/single-checkout/address/single-address.js +1 -1
- package/dist/page-layouts/single-checkout/shipment/single-page-shipment.css +17 -0
- package/dist/page-layouts/single-checkout/shipment/single-page-shipment.js +1 -1
- package/dist/page-layouts/single-checkout/shipment/single-shipment-content.css +17 -0
- package/dist/page-layouts/single-checkout/shipment/single-shipment-content.js +1 -1
- package/dist/pages/blog/blog.js +1 -1
- package/dist/pages/blog/index.js +1 -1
- package/dist/pages/cart/cart.css +45 -27
- package/dist/pages/cart/cart.js +1 -1
- package/dist/pages/cart/index.css +45 -27
- package/dist/pages/cart/index.js +1 -1
- package/dist/pages/checkout/checkout.css +73 -24
- package/dist/pages/checkout/checkout.js +1 -1
- package/dist/pages/checkout/index.css +73 -24
- package/dist/pages/checkout/index.js +1 -1
- package/dist/pages/index.css +125 -27
- package/dist/pages/index.js +1 -1
- package/dist/pages/order/order-tracking-details/order-tracking-details.css +8 -0
- package/dist/pages/order/order-tracking-details/order-tracking-details.js +1 -1
- package/dist/pages/order-status/index.css +8 -0
- package/dist/pages/order-status/index.js +1 -1
- package/dist/pages/order-status/order-status.css +8 -0
- package/dist/pages/order-status/order-status.js +1 -1
- package/dist/pages/product-listing/index.css +15 -0
- package/dist/pages/product-listing/index.js +1 -1
- package/dist/pages/product-listing/product-listing.css +15 -0
- package/dist/pages/product-listing/product-listing.js +1 -1
- package/dist/pages/wishlist/index.css +3 -0
- package/dist/pages/wishlist/index.js +1 -1
- package/dist/pages/wishlist/wishlist.css +3 -0
- package/dist/pages/wishlist/wishlist.js +1 -1
- package/package.json +1 -1
|
@@ -1289,6 +1289,27 @@ button {
|
|
|
1289
1289
|
width: 100%;
|
|
1290
1290
|
height: 100%;
|
|
1291
1291
|
}
|
|
1292
|
+
.delivery-location__buttonsContainer___lXjUz {
|
|
1293
|
+
margin-inline-start: 25px;
|
|
1294
|
+
margin-top: 8px;
|
|
1295
|
+
}
|
|
1296
|
+
.delivery-location__buttonsContainer___lXjUz .delivery-location__buttonDivider___ospHS {
|
|
1297
|
+
padding: 0px 8px;
|
|
1298
|
+
}
|
|
1299
|
+
.delivery-location__buttonsContainer___lXjUz .delivery-location__edit___xzpcm,
|
|
1300
|
+
.delivery-location__buttonsContainer___lXjUz .delivery-location__remove___DLNKF {
|
|
1301
|
+
padding: 4px;
|
|
1302
|
+
border: none;
|
|
1303
|
+
color: var(--buttonLink, #b1655b);
|
|
1304
|
+
font-style: normal;
|
|
1305
|
+
font-weight: 600;
|
|
1306
|
+
font-size: 12px;
|
|
1307
|
+
text-align: center;
|
|
1308
|
+
text-transform: uppercase;
|
|
1309
|
+
line-height: 140%;
|
|
1310
|
+
background: var(--pageBackground, #f8f8f8);
|
|
1311
|
+
cursor: pointer;
|
|
1312
|
+
}
|
|
1292
1313
|
.delivery-location__cartPincodeContainer____lhBS {
|
|
1293
1314
|
border: 1px solid var(--dividerStokes, #d4d1d1);
|
|
1294
1315
|
line-height: 140%;
|
|
@@ -1390,6 +1411,9 @@ button {
|
|
|
1390
1411
|
box-shadow: 0px 0px 0px 2px rgba(0, 0, 0, 0.25);
|
|
1391
1412
|
border: 1px solid var(--buttonPrimary, #4e3f09);
|
|
1392
1413
|
}
|
|
1414
|
+
.delivery-location__cartPincodeContainer____lhBS .delivery-location__changePinCodeButton___bPqSJ:disabled {
|
|
1415
|
+
opacity: 0.6;
|
|
1416
|
+
}
|
|
1393
1417
|
@media only screen and (max-width: 480px) {
|
|
1394
1418
|
.delivery-location__cartPincodeContainer____lhBS .delivery-location__changePinCodeButton___bPqSJ {
|
|
1395
1419
|
padding: 9px;
|
|
@@ -7519,30 +7543,11 @@ h5,
|
|
|
7519
7543
|
margin-top: 16px;
|
|
7520
7544
|
}
|
|
7521
7545
|
}
|
|
7522
|
-
.coupon__modalContent___BJog_ .coupon__modalBody___vZ3YF .
|
|
7523
|
-
|
|
7524
|
-
|
|
7525
|
-
|
|
7526
|
-
|
|
7527
|
-
display: flex;
|
|
7528
|
-
align-items: center;
|
|
7529
|
-
line-height: 140%;
|
|
7530
|
-
background-color: var(--errorBackground, #e6d5d5);
|
|
7531
|
-
border-radius: 8px;
|
|
7532
|
-
position: sticky;
|
|
7533
|
-
top: 0px;
|
|
7534
|
-
z-index: 4;
|
|
7535
|
-
}
|
|
7536
|
-
@media only screen and (max-width: 768px) {
|
|
7537
|
-
.coupon__modalContent___BJog_ .coupon__modalBody___vZ3YF .coupon__cartErrorContainer___n1BZa {
|
|
7538
|
-
border-radius: 0;
|
|
7539
|
-
}
|
|
7540
|
-
}
|
|
7541
|
-
.coupon__modalContent___BJog_ .coupon__modalBody___vZ3YF .coupon__cartErrorContainer___n1BZa .coupon__colorErrorNormal___EkO_A {
|
|
7542
|
-
font-size: 12px;
|
|
7543
|
-
font-weight: 600;
|
|
7544
|
-
margin-inline-start: 14px;
|
|
7545
|
-
color: var(--errorText, #ff3333);
|
|
7546
|
+
.coupon__modalContent___BJog_ .coupon__modalBody___vZ3YF .coupon__errorContainer___hM5ud .coupon__errorText___AZg1P {
|
|
7547
|
+
font-size: 12px !important;
|
|
7548
|
+
font-weight: 600 !important;
|
|
7549
|
+
margin: 0 !important;
|
|
7550
|
+
color: var(--errorText, #ff3333) !important;
|
|
7546
7551
|
}
|
|
7547
7552
|
.coupon__modalContent___BJog_ .coupon__modalBody___vZ3YF .coupon__couponInputBox___mlvGS {
|
|
7548
7553
|
position: relative;
|
|
@@ -7575,6 +7580,9 @@ h5,
|
|
|
7575
7580
|
.coupon__modalContent___BJog_ .coupon__modalBody___vZ3YF .coupon__couponInputBox___mlvGS input::placeholder {
|
|
7576
7581
|
color: var(--textLabel, #7d7676);
|
|
7577
7582
|
}
|
|
7583
|
+
.coupon__modalContent___BJog_ .coupon__modalBody___vZ3YF .coupon__couponInputBox___mlvGS input.coupon__hasError___aplVm {
|
|
7584
|
+
border-color: var(--errorText, #ff3333);
|
|
7585
|
+
}
|
|
7578
7586
|
.coupon__modalContent___BJog_ .coupon__modalBody___vZ3YF .coupon__couponInputBox___mlvGS .coupon__checkBtn___2vM1S {
|
|
7579
7587
|
color: var(--buttonPrimary, #4e3f09);
|
|
7580
7588
|
text-transform: uppercase;
|
|
@@ -11883,6 +11891,14 @@ h5,
|
|
|
11883
11891
|
position: relative;
|
|
11884
11892
|
cursor: pointer;
|
|
11885
11893
|
}
|
|
11894
|
+
.accordion__accordionContentImageItem____FBCe .accordion__itemCount____YDv4 {
|
|
11895
|
+
color: var(--textSecondary, #9c9c9c);
|
|
11896
|
+
font-size: 12px;
|
|
11897
|
+
font-style: normal;
|
|
11898
|
+
font-weight: 400;
|
|
11899
|
+
line-height: 140%;
|
|
11900
|
+
padding-left: 2px;
|
|
11901
|
+
}
|
|
11886
11902
|
.accordion__accordionContentImageItem____FBCe .accordion__imagePreview___FOjGs {
|
|
11887
11903
|
position: absolute;
|
|
11888
11904
|
left: -155%;
|
|
@@ -14054,12 +14070,12 @@ h5,
|
|
|
14054
14070
|
}
|
|
14055
14071
|
}
|
|
14056
14072
|
.remove-cart-item__header___o2GmE {
|
|
14057
|
-
align-items: unset;
|
|
14058
|
-
padding: 24px;
|
|
14073
|
+
align-items: unset !important;
|
|
14074
|
+
padding: 24px !important;
|
|
14059
14075
|
}
|
|
14060
14076
|
@media only screen and (max-width: 768px) {
|
|
14061
14077
|
.remove-cart-item__header___o2GmE {
|
|
14062
|
-
padding: 16px;
|
|
14078
|
+
padding: 16px !important;
|
|
14063
14079
|
}
|
|
14064
14080
|
}
|
|
14065
14081
|
.remove-cart-item__subTitle___TwRmf {
|
|
@@ -14070,6 +14086,8 @@ h5,
|
|
|
14070
14086
|
border-start-end-radius: 4px;
|
|
14071
14087
|
}
|
|
14072
14088
|
.remove-cart-item__removeModalBody___uY7E6 {
|
|
14089
|
+
min-height: 190px;
|
|
14090
|
+
max-width: 572px;
|
|
14073
14091
|
line-height: 140%;
|
|
14074
14092
|
padding: 24px;
|
|
14075
14093
|
}
|