@gofynd/theme-template 2.0.2 → 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/components/product-card/product-card.css +3 -0
- package/dist/components/product-card/product-card.js +1 -1
- package/dist/components/reasons-list/reason-item/reason-item.css +8 -0
- package/dist/components/reasons-list/reason-item/reason-item.js +1 -1
- package/dist/components/reasons-list/reasons-list.css +8 -0
- package/dist/components/reasons-list/reasons-list.js +1 -1
- package/dist/index.css +108 -10
- package/dist/index.js +1 -1
- package/dist/page-layouts/cart/Components/chip-item/chip-item.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/login/component/login-otp/login-otp.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/cart/cart.js +1 -1
- package/dist/pages/cart/index.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/contact-us/contact-us.css +48 -1
- package/dist/pages/contact-us/contact-us.js +1 -1
- package/dist/pages/contact-us/index.css +48 -1
- package/dist/pages/contact-us/index.js +1 -1
- package/dist/pages/index.css +108 -10
- package/dist/pages/index.js +1 -1
- package/dist/pages/login/index.js +1 -1
- package/dist/pages/login/login.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/dist/pages/product-listing/index.css +3 -0
- package/dist/pages/product-listing/index.js +1 -1
- package/dist/pages/product-listing/product-listing.css +3 -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
package/dist/pages/index.css
CHANGED
|
@@ -13737,6 +13737,9 @@ h5,
|
|
|
13737
13737
|
.product-card__productCard___VMIjd .product-card__productDescContainer___S8oiv .product-card__productDesc___nZT4A .product-card__productPrice--discount___x2AjF {
|
|
13738
13738
|
color: var(--saleDiscountText, #1c958f);
|
|
13739
13739
|
}
|
|
13740
|
+
.product-card__productCard___VMIjd .product-card__productDescContainer___S8oiv .product-card__productDesc___nZT4A .product-card__productPrice--textCenter___JrNcf {
|
|
13741
|
+
text-align: center;
|
|
13742
|
+
}
|
|
13740
13743
|
.product-card__productCard___VMIjd .product-card__productDescContainer___S8oiv .product-card__productDesc___nZT4A .product-card__productVariants___rZzJl {
|
|
13741
13744
|
margin-top: 8px;
|
|
13742
13745
|
display: flex;
|
|
@@ -30695,6 +30698,9 @@ h5,
|
|
|
30695
30698
|
.sticky-pay-now__checkoutButton___mtO42 {
|
|
30696
30699
|
gap: 12px;
|
|
30697
30700
|
}
|
|
30701
|
+
.sticky-pay-now__buttonWidth___nKraw {
|
|
30702
|
+
width: 100%;
|
|
30703
|
+
}
|
|
30698
30704
|
|
|
30699
30705
|
/**color by character**/
|
|
30700
30706
|
/** Font family **/
|
|
@@ -32460,6 +32466,10 @@ h5,
|
|
|
32460
32466
|
.checkout-payment-content__container___HusGh {
|
|
32461
32467
|
background: var(--pageBackground, #f8f8f8);
|
|
32462
32468
|
}
|
|
32469
|
+
.checkout-payment-content__container___HusGh.checkout-payment-content__unsetBorder___iXIU7 {
|
|
32470
|
+
border: unset;
|
|
32471
|
+
padding-top: 0;
|
|
32472
|
+
}
|
|
32463
32473
|
@media only screen and (min-width: 769px) {
|
|
32464
32474
|
.checkout-payment-content__container___HusGh {
|
|
32465
32475
|
display: flex;
|
|
@@ -32594,6 +32604,7 @@ h5,
|
|
|
32594
32604
|
font-size: 14px;
|
|
32595
32605
|
font-weight: 500;
|
|
32596
32606
|
line-height: 140%;
|
|
32607
|
+
height: 18px;
|
|
32597
32608
|
}
|
|
32598
32609
|
@media only screen and (max-width: 768px) {
|
|
32599
32610
|
.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 {
|
|
@@ -32981,6 +32992,11 @@ h5,
|
|
|
32981
32992
|
display: flex;
|
|
32982
32993
|
flex-direction: column;
|
|
32983
32994
|
}
|
|
32995
|
+
@media only screen and (max-width: 480px) {
|
|
32996
|
+
.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 {
|
|
32997
|
+
padding-bottom: 24px;
|
|
32998
|
+
}
|
|
32999
|
+
}
|
|
32984
33000
|
.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 {
|
|
32985
33001
|
display: flex;
|
|
32986
33002
|
flex-direction: column;
|
|
@@ -33132,12 +33148,12 @@ h5,
|
|
|
33132
33148
|
margin-bottom: 16px;
|
|
33133
33149
|
}
|
|
33134
33150
|
.checkout-payment-content__container___HusGh .checkout-payment-content__cardTab___uYvQv .checkout-payment-content__newCardWrapper___p35go .checkout-payment-content__saveNewCard___cPi2y {
|
|
33135
|
-
padding:
|
|
33136
|
-
border-radius:
|
|
33151
|
+
padding: 16px;
|
|
33152
|
+
border-radius: var(--buttonRadius, 0px);
|
|
33137
33153
|
background-color: var(--primaryColor);
|
|
33138
33154
|
border: none;
|
|
33139
33155
|
width: 100%;
|
|
33140
|
-
margin-top:
|
|
33156
|
+
margin-top: 16px;
|
|
33141
33157
|
font-weight: 600;
|
|
33142
33158
|
font-size: 14px;
|
|
33143
33159
|
text-transform: uppercase;
|
|
@@ -33146,12 +33162,12 @@ h5,
|
|
|
33146
33162
|
line-height: 140%;
|
|
33147
33163
|
}
|
|
33148
33164
|
.checkout-payment-content__container___HusGh .checkout-payment-content__cardTab___uYvQv .checkout-payment-content__newCardWrapper___p35go .checkout-payment-content__saveNewCard___cPi2y[disabled] {
|
|
33149
|
-
padding:
|
|
33150
|
-
border-radius:
|
|
33165
|
+
padding: 16px;
|
|
33166
|
+
border-radius: var(--buttonRadius, 0px);
|
|
33151
33167
|
background-color: var(--primaryColor);
|
|
33152
33168
|
border: none;
|
|
33153
33169
|
width: 100%;
|
|
33154
|
-
margin-top:
|
|
33170
|
+
margin-top: 16px;
|
|
33155
33171
|
font-weight: 600;
|
|
33156
33172
|
font-size: 14px;
|
|
33157
33173
|
text-transform: uppercase;
|
|
@@ -33322,7 +33338,7 @@ h5,
|
|
|
33322
33338
|
.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 {
|
|
33323
33339
|
transform: rotate(270deg);
|
|
33324
33340
|
}
|
|
33325
|
-
[dir=
|
|
33341
|
+
[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 {
|
|
33326
33342
|
transform: rotate(90deg);
|
|
33327
33343
|
}
|
|
33328
33344
|
.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 {
|
|
@@ -33399,6 +33415,12 @@ h5,
|
|
|
33399
33415
|
align-items: center;
|
|
33400
33416
|
border: 1px solid var(--dividerStokes);
|
|
33401
33417
|
border-radius: 100px;
|
|
33418
|
+
width: 38px;
|
|
33419
|
+
height: 38px;
|
|
33420
|
+
padding: 8px 4px;
|
|
33421
|
+
}
|
|
33422
|
+
.checkout-payment-content__container___HusGh .checkout-payment-content__upiApp___M2sjF .checkout-payment-content__logo___jNLmQ:last-child {
|
|
33423
|
+
padding: unset;
|
|
33402
33424
|
}
|
|
33403
33425
|
.checkout-payment-content__container___HusGh .checkout-payment-content__upiApp___M2sjF .checkout-payment-content__displayName___dLKMP {
|
|
33404
33426
|
flex: 1;
|
|
@@ -33625,7 +33647,8 @@ h5,
|
|
|
33625
33647
|
text-transform: uppercase;
|
|
33626
33648
|
cursor: pointer;
|
|
33627
33649
|
line-height: 140%;
|
|
33628
|
-
margin:
|
|
33650
|
+
margin-top: 16px;
|
|
33651
|
+
margin-bottom: 24px;
|
|
33629
33652
|
}
|
|
33630
33653
|
.checkout-payment-content__container___HusGh .checkout-payment-content__upiPay___CycYi .checkout-payment-content__payBtn___dgcAp:hover {
|
|
33631
33654
|
background-color: var(--buttonPrimaryL1, #71653a);
|
|
@@ -34062,7 +34085,7 @@ h5,
|
|
|
34062
34085
|
display: flex;
|
|
34063
34086
|
align-items: center;
|
|
34064
34087
|
}
|
|
34065
|
-
[dir=
|
|
34088
|
+
[dir="rtl"] .checkout-payment-content__moreModeIcon___Hjipo {
|
|
34066
34089
|
transform: rotate(90deg);
|
|
34067
34090
|
}
|
|
34068
34091
|
.checkout-payment-content__moreModeIcon___Hjipo svg {
|
|
@@ -34160,6 +34183,10 @@ h5,
|
|
|
34160
34183
|
display: none;
|
|
34161
34184
|
}
|
|
34162
34185
|
}
|
|
34186
|
+
.checkout-payment-content__mopIcon___koORc {
|
|
34187
|
+
width: 24px;
|
|
34188
|
+
height: 24px;
|
|
34189
|
+
}
|
|
34163
34190
|
|
|
34164
34191
|
/**color by character**/
|
|
34165
34192
|
/** Font family **/
|
|
@@ -34863,6 +34890,9 @@ h5,
|
|
|
34863
34890
|
.checkout-payment__paymentContainer___1UBn5 {
|
|
34864
34891
|
margin-top: 20px;
|
|
34865
34892
|
}
|
|
34893
|
+
.checkout-payment__paymentContainer___1UBn5.checkout-payment__unsetMarginTop___yjz9p {
|
|
34894
|
+
margin-top: unset !important;
|
|
34895
|
+
}
|
|
34866
34896
|
@media only screen and (max-width: 480px) {
|
|
34867
34897
|
.checkout-payment__paymentContainer___1UBn5 {
|
|
34868
34898
|
margin-top: 12px;
|
|
@@ -34892,15 +34922,33 @@ h5,
|
|
|
34892
34922
|
line-height: 140%;
|
|
34893
34923
|
color: var(--textHeading);
|
|
34894
34924
|
}
|
|
34925
|
+
.checkout-payment__paymentContainer___1UBn5 .checkout-payment__reviewHeaderUnselect___KZS1G .checkout-payment__unsetPaddingLeft___MfCqa {
|
|
34926
|
+
padding-left: 0 !important;
|
|
34927
|
+
}
|
|
34895
34928
|
.checkout-payment__paymentContainer___1UBn5 .checkout-payment__paymentHeaderSelect___m4N3s {
|
|
34896
34929
|
display: flex;
|
|
34897
34930
|
align-items: center;
|
|
34898
34931
|
padding: 24px;
|
|
34899
34932
|
border-radius: 8px 8px 0 0;
|
|
34900
34933
|
border: 1px solid var(--dividerStokes);
|
|
34934
|
+
background-color: var(--pageBackground, #f8f8f8);
|
|
34935
|
+
}
|
|
34936
|
+
.checkout-payment__paymentContainer___1UBn5 .checkout-payment__paymentHeaderSelect___m4N3s.checkout-payment__unsetBorder___lrZnv {
|
|
34937
|
+
border: unset !important;
|
|
34938
|
+
}
|
|
34939
|
+
@media only screen and (min-width: 769px) {
|
|
34940
|
+
.checkout-payment__paymentContainer___1UBn5 .checkout-payment__paymentHeaderSelect___m4N3s.checkout-payment__unsetBorder___lrZnv {
|
|
34941
|
+
padding-bottom: 16px !important;
|
|
34942
|
+
}
|
|
34943
|
+
}
|
|
34944
|
+
@media only screen and (max-width: 480px) {
|
|
34945
|
+
.checkout-payment__paymentContainer___1UBn5 .checkout-payment__paymentHeaderSelect___m4N3s.checkout-payment__unsetBorder___lrZnv {
|
|
34946
|
+
border-bottom: 1px solid var(--dividerStokes) !important;
|
|
34947
|
+
}
|
|
34901
34948
|
}
|
|
34902
34949
|
@media only screen and (max-width: 768px) {
|
|
34903
34950
|
.checkout-payment__paymentContainer___1UBn5 .checkout-payment__paymentHeaderSelect___m4N3s {
|
|
34951
|
+
padding: 16px;
|
|
34904
34952
|
border-radius: 0;
|
|
34905
34953
|
}
|
|
34906
34954
|
}
|
|
@@ -34923,6 +34971,9 @@ h5,
|
|
|
34923
34971
|
padding-inline-start: 15px;
|
|
34924
34972
|
}
|
|
34925
34973
|
}
|
|
34974
|
+
.checkout-payment__paymentContainer___1UBn5 .checkout-payment__paymentHeaderSelect___m4N3s .checkout-payment__unsetPaddingLeft___MfCqa {
|
|
34975
|
+
padding-left: 0 !important;
|
|
34976
|
+
}
|
|
34926
34977
|
.checkout-payment__paymentContainer___1UBn5 .checkout-payment__paymentFailedHeader___hxZJR {
|
|
34927
34978
|
border-width: 0 1px 1px 1px;
|
|
34928
34979
|
border-color: var(--dividerStokes);
|
|
@@ -39358,6 +39409,14 @@ h5,
|
|
|
39358
39409
|
padding: 80px 0px;
|
|
39359
39410
|
gap: 80px;
|
|
39360
39411
|
}
|
|
39412
|
+
.contact-us__contact_container___qEJcu.contact-us__reducedBottomGap___u9UlZ {
|
|
39413
|
+
padding-bottom: 61px;
|
|
39414
|
+
}
|
|
39415
|
+
@media only screen and (max-width: 768px) {
|
|
39416
|
+
.contact-us__contact_container___qEJcu.contact-us__reducedBottomGap___u9UlZ {
|
|
39417
|
+
padding-bottom: 0;
|
|
39418
|
+
}
|
|
39419
|
+
}
|
|
39361
39420
|
@media only screen and (min-width: 769px) {
|
|
39362
39421
|
.contact-us__contact_container___qEJcu.contact-us__onImageContainer___O2nmX {
|
|
39363
39422
|
flex-direction: column;
|
|
@@ -39374,7 +39433,7 @@ h5,
|
|
|
39374
39433
|
flex-direction: column-reverse;
|
|
39375
39434
|
width: 100%;
|
|
39376
39435
|
padding: 32px 16px;
|
|
39377
|
-
gap:
|
|
39436
|
+
gap: 24px;
|
|
39378
39437
|
}
|
|
39379
39438
|
}
|
|
39380
39439
|
.contact-us__showDesktop___pnBd_ {
|
|
@@ -39399,9 +39458,48 @@ h5,
|
|
|
39399
39458
|
gap: 24px;
|
|
39400
39459
|
width: 50%;
|
|
39401
39460
|
}
|
|
39461
|
+
.contact-us__flex_item___zn3y0.contact-us__descriptionMargin___mEgpu {
|
|
39462
|
+
max-width: 464px !important;
|
|
39463
|
+
text-align: center;
|
|
39464
|
+
margin: 0 auto;
|
|
39465
|
+
padding-bottom: 40px;
|
|
39466
|
+
}
|
|
39467
|
+
.contact-us__flex_item___zn3y0.contact-us__descriptionMargin___mEgpu p {
|
|
39468
|
+
margin-top: 0;
|
|
39469
|
+
}
|
|
39470
|
+
@media only screen and (max-width: 768px) {
|
|
39471
|
+
.contact-us__flex_item___zn3y0.contact-us__descriptionMargin___mEgpu {
|
|
39472
|
+
margin: unset;
|
|
39473
|
+
padding: 0 16px;
|
|
39474
|
+
padding-bottom: 32px;
|
|
39475
|
+
}
|
|
39476
|
+
}
|
|
39477
|
+
@media only screen and (min-width: 769px) {
|
|
39478
|
+
.contact-us__flex_item___zn3y0.contact-us__descriptionPaddingTop___xxwdi {
|
|
39479
|
+
padding-top: 61px;
|
|
39480
|
+
}
|
|
39481
|
+
}
|
|
39482
|
+
.contact-us__flex_item___zn3y0 .contact-us__description___stLxt {
|
|
39483
|
+
color: var(--textBody, #3c3131);
|
|
39484
|
+
font-size: 16px;
|
|
39485
|
+
font-style: normal;
|
|
39486
|
+
font-weight: 400;
|
|
39487
|
+
line-height: 20px;
|
|
39488
|
+
letter-spacing: -0.32px;
|
|
39489
|
+
align-self: stretch;
|
|
39490
|
+
margin-top: 12px;
|
|
39491
|
+
}
|
|
39492
|
+
@media only screen and (max-width: 768px) {
|
|
39493
|
+
.contact-us__flex_item___zn3y0 .contact-us__description___stLxt {
|
|
39494
|
+
font-size: 14px;
|
|
39495
|
+
text-align: left;
|
|
39496
|
+
}
|
|
39497
|
+
}
|
|
39402
39498
|
@media only screen and (max-width: 768px) {
|
|
39403
39499
|
.contact-us__flex_item___zn3y0 {
|
|
39404
39500
|
width: 100%;
|
|
39501
|
+
flex-direction: column-reverse;
|
|
39502
|
+
gap: 48px;
|
|
39405
39503
|
}
|
|
39406
39504
|
}
|
|
39407
39505
|
.contact-us__flex_item___zn3y0 .contact-us__listItems___vBJur {
|