@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
|
@@ -886,6 +886,9 @@ h5,
|
|
|
886
886
|
color: var(--buttonSecondary);
|
|
887
887
|
cursor: pointer;
|
|
888
888
|
}
|
|
889
|
+
.single-address-content__addressContentConitainer___CupPn .single-address-content__actionContainer___vCQh2 .single-address-content__deliverToThis___tRzNQ:disabled {
|
|
890
|
+
opacity: 0.6;
|
|
891
|
+
}
|
|
889
892
|
@media only screen and (max-width: 480px) {
|
|
890
893
|
.single-address-content__addressContentConitainer___CupPn .single-address-content__actionContainer___vCQh2 .single-address-content__deliverToThis___tRzNQ {
|
|
891
894
|
padding: 20px 24px;
|
|
@@ -937,6 +940,48 @@ h5,
|
|
|
937
940
|
color: var(--errorText, #ff3333);
|
|
938
941
|
cursor: pointer;
|
|
939
942
|
}
|
|
943
|
+
.single-address-content__showMoreBtnContainer___K9Zyg {
|
|
944
|
+
display: flex;
|
|
945
|
+
align-items: center;
|
|
946
|
+
justify-content: center;
|
|
947
|
+
width: 100%;
|
|
948
|
+
padding: 4px;
|
|
949
|
+
}
|
|
950
|
+
.single-address-content__showMoreBtnContainer___K9Zyg .single-address-content__showOtherAddresses___sE7EG {
|
|
951
|
+
cursor: pointer;
|
|
952
|
+
display: flex;
|
|
953
|
+
gap: 8px;
|
|
954
|
+
/* ✅ FIX → These must NOT be inside "span { }" */
|
|
955
|
+
}
|
|
956
|
+
@media only screen and (max-width: 480px) {
|
|
957
|
+
.single-address-content__showMoreBtnContainer___K9Zyg .single-address-content__showOtherAddresses___sE7EG {
|
|
958
|
+
font-size: 12px;
|
|
959
|
+
margin: 8px 0px !important;
|
|
960
|
+
}
|
|
961
|
+
}
|
|
962
|
+
.single-address-content__showMoreBtnContainer___K9Zyg .single-address-content__showOtherAddresses___sE7EG span {
|
|
963
|
+
color: var(--buttonPrimary, #4e3f09);
|
|
964
|
+
font-size: 14px;
|
|
965
|
+
display: flex;
|
|
966
|
+
justify-content: center;
|
|
967
|
+
align-items: center;
|
|
968
|
+
gap: 4px;
|
|
969
|
+
font-weight: 500;
|
|
970
|
+
align-self: stretch;
|
|
971
|
+
}
|
|
972
|
+
@media only screen and (max-width: 480px) {
|
|
973
|
+
.single-address-content__showMoreBtnContainer___K9Zyg .single-address-content__showOtherAddresses___sE7EG span {
|
|
974
|
+
font-size: 12px;
|
|
975
|
+
}
|
|
976
|
+
}
|
|
977
|
+
.single-address-content__showMoreBtnContainer___K9Zyg .single-address-content__showOtherAddresses___sE7EG .single-address-content__rotateDown___xUhKw {
|
|
978
|
+
transform: rotate(90deg);
|
|
979
|
+
transition: transform 0.2s ease;
|
|
980
|
+
}
|
|
981
|
+
.single-address-content__showMoreBtnContainer___K9Zyg .single-address-content__showOtherAddresses___sE7EG .single-address-content__rotateUp___QT5Zr {
|
|
982
|
+
transform: rotate(-90deg);
|
|
983
|
+
transition: transform 0.2s ease;
|
|
984
|
+
}
|
|
940
985
|
|
|
941
986
|
/**color by character**/
|
|
942
987
|
/** Font family **/
|