@gofynd/theme-template 3.2.16 → 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
|
@@ -4418,6 +4418,27 @@ button {
|
|
|
4418
4418
|
width: 100%;
|
|
4419
4419
|
height: 100%;
|
|
4420
4420
|
}
|
|
4421
|
+
.delivery-location__buttonsContainer___lXjUz {
|
|
4422
|
+
margin-inline-start: 25px;
|
|
4423
|
+
margin-top: 8px;
|
|
4424
|
+
}
|
|
4425
|
+
.delivery-location__buttonsContainer___lXjUz .delivery-location__buttonDivider___ospHS {
|
|
4426
|
+
padding: 0px 8px;
|
|
4427
|
+
}
|
|
4428
|
+
.delivery-location__buttonsContainer___lXjUz .delivery-location__edit___xzpcm,
|
|
4429
|
+
.delivery-location__buttonsContainer___lXjUz .delivery-location__remove___DLNKF {
|
|
4430
|
+
padding: 4px;
|
|
4431
|
+
border: none;
|
|
4432
|
+
color: var(--buttonLink, #b1655b);
|
|
4433
|
+
font-style: normal;
|
|
4434
|
+
font-weight: 600;
|
|
4435
|
+
font-size: 12px;
|
|
4436
|
+
text-align: center;
|
|
4437
|
+
text-transform: uppercase;
|
|
4438
|
+
line-height: 140%;
|
|
4439
|
+
background: var(--pageBackground, #f8f8f8);
|
|
4440
|
+
cursor: pointer;
|
|
4441
|
+
}
|
|
4421
4442
|
.delivery-location__cartPincodeContainer____lhBS {
|
|
4422
4443
|
border: 1px solid var(--dividerStokes, #d4d1d1);
|
|
4423
4444
|
line-height: 140%;
|
|
@@ -4519,6 +4540,9 @@ button {
|
|
|
4519
4540
|
box-shadow: 0px 0px 0px 2px rgba(0, 0, 0, 0.25);
|
|
4520
4541
|
border: 1px solid var(--buttonPrimary, #4e3f09);
|
|
4521
4542
|
}
|
|
4543
|
+
.delivery-location__cartPincodeContainer____lhBS .delivery-location__changePinCodeButton___bPqSJ:disabled {
|
|
4544
|
+
opacity: 0.6;
|
|
4545
|
+
}
|
|
4522
4546
|
@media only screen and (max-width: 480px) {
|
|
4523
4547
|
.delivery-location__cartPincodeContainer____lhBS .delivery-location__changePinCodeButton___bPqSJ {
|
|
4524
4548
|
padding: 9px;
|
|
@@ -9682,30 +9706,11 @@ h5,
|
|
|
9682
9706
|
margin-top: 16px;
|
|
9683
9707
|
}
|
|
9684
9708
|
}
|
|
9685
|
-
.coupon__modalContent___BJog_ .coupon__modalBody___vZ3YF .
|
|
9686
|
-
|
|
9687
|
-
|
|
9688
|
-
|
|
9689
|
-
|
|
9690
|
-
display: flex;
|
|
9691
|
-
align-items: center;
|
|
9692
|
-
line-height: 140%;
|
|
9693
|
-
background-color: var(--errorBackground, #e6d5d5);
|
|
9694
|
-
border-radius: 8px;
|
|
9695
|
-
position: sticky;
|
|
9696
|
-
top: 0px;
|
|
9697
|
-
z-index: 4;
|
|
9698
|
-
}
|
|
9699
|
-
@media only screen and (max-width: 768px) {
|
|
9700
|
-
.coupon__modalContent___BJog_ .coupon__modalBody___vZ3YF .coupon__cartErrorContainer___n1BZa {
|
|
9701
|
-
border-radius: 0;
|
|
9702
|
-
}
|
|
9703
|
-
}
|
|
9704
|
-
.coupon__modalContent___BJog_ .coupon__modalBody___vZ3YF .coupon__cartErrorContainer___n1BZa .coupon__colorErrorNormal___EkO_A {
|
|
9705
|
-
font-size: 12px;
|
|
9706
|
-
font-weight: 600;
|
|
9707
|
-
margin-inline-start: 14px;
|
|
9708
|
-
color: var(--errorText, #ff3333);
|
|
9709
|
+
.coupon__modalContent___BJog_ .coupon__modalBody___vZ3YF .coupon__errorContainer___hM5ud .coupon__errorText___AZg1P {
|
|
9710
|
+
font-size: 12px !important;
|
|
9711
|
+
font-weight: 600 !important;
|
|
9712
|
+
margin: 0 !important;
|
|
9713
|
+
color: var(--errorText, #ff3333) !important;
|
|
9709
9714
|
}
|
|
9710
9715
|
.coupon__modalContent___BJog_ .coupon__modalBody___vZ3YF .coupon__couponInputBox___mlvGS {
|
|
9711
9716
|
position: relative;
|
|
@@ -9738,6 +9743,9 @@ h5,
|
|
|
9738
9743
|
.coupon__modalContent___BJog_ .coupon__modalBody___vZ3YF .coupon__couponInputBox___mlvGS input::placeholder {
|
|
9739
9744
|
color: var(--textLabel, #7d7676);
|
|
9740
9745
|
}
|
|
9746
|
+
.coupon__modalContent___BJog_ .coupon__modalBody___vZ3YF .coupon__couponInputBox___mlvGS input.coupon__hasError___aplVm {
|
|
9747
|
+
border-color: var(--errorText, #ff3333);
|
|
9748
|
+
}
|
|
9741
9749
|
.coupon__modalContent___BJog_ .coupon__modalBody___vZ3YF .coupon__couponInputBox___mlvGS .coupon__checkBtn___2vM1S {
|
|
9742
9750
|
color: var(--buttonPrimary, #4e3f09);
|
|
9743
9751
|
text-transform: uppercase;
|