@gofynd/theme-template 3.2.8 → 3.2.9
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/compare-product-card/compare-product-card.css +65 -1
- package/dist/components/compare-product-card/compare-product-card.js +1 -1
- package/dist/index.css +5 -6
- package/dist/index.js +1 -1
- package/dist/page-layouts/compare/compare.css +66 -1
- package/dist/page-layouts/compare/compare.js +1 -1
- package/dist/page-layouts/single-checkout/payment/card-form.css +5 -6
- package/dist/page-layouts/single-checkout/payment/checkout-payment-content.css +993 -6
- package/dist/page-layouts/single-checkout/payment/checkout-payment-content.js +1 -1
- package/dist/page-layouts/single-checkout/payment/checkout-payment.css +993 -6
- package/dist/page-layouts/single-checkout/payment/checkout-payment.js +1 -1
- package/dist/page-layouts/single-checkout/payment/juspay-card-from.css +5 -6
- package/dist/pages/checkout/checkout.css +5 -6
- package/dist/pages/checkout/checkout.js +1 -1
- package/dist/pages/checkout/index.css +5 -6
- package/dist/pages/checkout/index.js +1 -1
- package/dist/pages/index.css +5 -6
- package/dist/pages/index.js +1 -1
- package/package.json +1 -1
|
@@ -2638,6 +2638,7 @@ h5,
|
|
|
2638
2638
|
@media only screen and (max-width: 480px) {
|
|
2639
2639
|
.compare__productModalContainer___Z6wUX .compare__productListWrapper___dnRCV {
|
|
2640
2640
|
height: calc(100vh - 140px);
|
|
2641
|
+
padding: 0 16px;
|
|
2641
2642
|
}
|
|
2642
2643
|
}
|
|
2643
2644
|
.compare__productModalContainer___Z6wUX .compare__productListWrapper___dnRCV .compare__searchBoxContainer___Mn_ls {
|
|
@@ -3555,17 +3556,35 @@ h5,
|
|
|
3555
3556
|
border: 1px solid var(--Overlay-Popup-Divider-Stroke, #e0e0e0);
|
|
3556
3557
|
background: var(--Theme-Page-Background, #fff);
|
|
3557
3558
|
}
|
|
3559
|
+
@media only screen and (max-width: 480px) {
|
|
3560
|
+
.compare-product-card__cardContainer___zMPZh {
|
|
3561
|
+
padding: 8px;
|
|
3562
|
+
gap: 8px !important;
|
|
3563
|
+
}
|
|
3564
|
+
}
|
|
3558
3565
|
.compare-product-card__cardContainer___zMPZh .compare-product-card__cardImageContainer___gwmlm {
|
|
3559
3566
|
width: 107px;
|
|
3560
3567
|
gap: 4px;
|
|
3561
3568
|
border-radius: 12px;
|
|
3562
3569
|
}
|
|
3570
|
+
@media only screen and (max-width: 480px) {
|
|
3571
|
+
.compare-product-card__cardContainer___zMPZh .compare-product-card__cardImageContainer___gwmlm {
|
|
3572
|
+
width: 76px !important;
|
|
3573
|
+
height: 100% !important;
|
|
3574
|
+
}
|
|
3575
|
+
}
|
|
3563
3576
|
.compare-product-card__cardContainer___zMPZh .compare-product-card__cardImageContainer___gwmlm img {
|
|
3564
3577
|
width: 107px;
|
|
3565
3578
|
height: 100%;
|
|
3566
3579
|
object-fit: cover;
|
|
3567
3580
|
border-radius: 12px;
|
|
3568
3581
|
}
|
|
3582
|
+
@media only screen and (max-width: 480px) {
|
|
3583
|
+
.compare-product-card__cardContainer___zMPZh .compare-product-card__cardImageContainer___gwmlm img {
|
|
3584
|
+
width: 76px;
|
|
3585
|
+
height: 100% !important;
|
|
3586
|
+
}
|
|
3587
|
+
}
|
|
3569
3588
|
.compare-product-card__cardContainer___zMPZh .compare-product-card__cardDetailWrapper___AA6eM {
|
|
3570
3589
|
display: flex;
|
|
3571
3590
|
flex-direction: column;
|
|
@@ -3582,12 +3601,24 @@ h5,
|
|
|
3582
3601
|
flex-direction: column;
|
|
3583
3602
|
gap: 4px;
|
|
3584
3603
|
}
|
|
3604
|
+
@media only screen and (max-width: 480px) {
|
|
3605
|
+
.compare-product-card__cardContainer___zMPZh .compare-product-card__priceBtnSection___iinFL {
|
|
3606
|
+
gap: 8px;
|
|
3607
|
+
}
|
|
3608
|
+
}
|
|
3585
3609
|
.compare-product-card__cardContainer___zMPZh .compare-product-card__priceBtnSection___iinFL h5 {
|
|
3586
3610
|
color: var(--textBody, #3c3131);
|
|
3587
3611
|
font-size: 14px;
|
|
3588
3612
|
font-weight: 600;
|
|
3589
3613
|
letter-spacing: -0.28px;
|
|
3590
3614
|
}
|
|
3615
|
+
@media only screen and (max-width: 480px) {
|
|
3616
|
+
.compare-product-card__cardContainer___zMPZh .compare-product-card__priceBtnSection___iinFL h5 {
|
|
3617
|
+
font-size: 12px;
|
|
3618
|
+
font-weight: 400;
|
|
3619
|
+
letter-spacing: -0.24px;
|
|
3620
|
+
}
|
|
3621
|
+
}
|
|
3591
3622
|
.compare-product-card__cardContainer___zMPZh .compare-product-card__priceBtnSection___iinFL .compare-product-card__category___zIlKv {
|
|
3592
3623
|
color: var(--textHeading, #26201a);
|
|
3593
3624
|
font-size: 12px;
|
|
@@ -3599,12 +3630,23 @@ h5,
|
|
|
3599
3630
|
gap: 8px;
|
|
3600
3631
|
align-items: center;
|
|
3601
3632
|
}
|
|
3633
|
+
@media only screen and (max-width: 480px) {
|
|
3634
|
+
.compare-product-card__cardContainer___zMPZh .compare-product-card__priceBtnSection___iinFL .compare-product-card__priceInfo___xTmrK {
|
|
3635
|
+
gap: 0 !important;
|
|
3636
|
+
align-items: normal;
|
|
3637
|
+
flex-direction: column;
|
|
3638
|
+
}
|
|
3639
|
+
}
|
|
3602
3640
|
.compare-product-card__cardContainer___zMPZh .compare-product-card__priceBtnSection___iinFL .compare-product-card__priceInfo___xTmrK h4 {
|
|
3603
3641
|
color: var(--textHeading, #26201a);
|
|
3604
3642
|
font-size: 16px;
|
|
3605
3643
|
font-weight: 600;
|
|
3606
3644
|
letter-spacing: -0.32px;
|
|
3607
3645
|
}
|
|
3646
|
+
.compare-product-card__cardContainer___zMPZh .compare-product-card__priceBtnSection___iinFL .compare-product-card__priceInfo___xTmrK .compare-product-card__priceContainer___ryFbU {
|
|
3647
|
+
display: flex;
|
|
3648
|
+
gap: 8px;
|
|
3649
|
+
}
|
|
3608
3650
|
.compare-product-card__cardContainer___zMPZh .compare-product-card__priceBtnSection___iinFL .compare-product-card__priceInfo___xTmrK .compare-product-card__actualPrice___nDaUJ {
|
|
3609
3651
|
color: var(--textLabel, #7d7676);
|
|
3610
3652
|
font-size: 12px;
|
|
@@ -3633,6 +3675,19 @@ h5,
|
|
|
3633
3675
|
font-size: 14px;
|
|
3634
3676
|
font-weight: 500;
|
|
3635
3677
|
letter-spacing: -0.28px;
|
|
3678
|
+
display: flex;
|
|
3679
|
+
align-items: center;
|
|
3680
|
+
justify-content: center;
|
|
3681
|
+
}
|
|
3682
|
+
@media only screen and (max-width: 480px) {
|
|
3683
|
+
.compare-product-card__cardContainer___zMPZh .compare-product-card__addToCartBtnSection____OZ_c {
|
|
3684
|
+
font-size: 12px;
|
|
3685
|
+
font-weight: 500;
|
|
3686
|
+
letter-spacing: -0.24px;
|
|
3687
|
+
padding: 6.795px 18.12px;
|
|
3688
|
+
height: 32px;
|
|
3689
|
+
margin-top: 8px;
|
|
3690
|
+
}
|
|
3636
3691
|
}
|
|
3637
3692
|
.compare-product-card__shimmerWrapper___YuAk_ .compare-product-card__cardContainer___zMPZh {
|
|
3638
3693
|
padding: 16px;
|
|
@@ -3644,11 +3699,21 @@ h5,
|
|
|
3644
3699
|
border: 1px solid var(--Overlay-Popup-Divider-Stroke, #e0e0e0);
|
|
3645
3700
|
background: var(--Theme-Page-Background, #fff);
|
|
3646
3701
|
}
|
|
3702
|
+
@media only screen and (max-width: 480px) {
|
|
3703
|
+
.compare-product-card__shimmerWrapper___YuAk_ .compare-product-card__cardContainer___zMPZh {
|
|
3704
|
+
gap: 8px !important;
|
|
3705
|
+
}
|
|
3706
|
+
}
|
|
3647
3707
|
.compare-product-card__shimmerWrapper___YuAk_ .compare-product-card__imageShimmer___X9_wx {
|
|
3648
3708
|
width: 110px !important;
|
|
3649
|
-
height:
|
|
3709
|
+
height: 100% !important;
|
|
3650
3710
|
border-radius: 12px;
|
|
3651
3711
|
}
|
|
3712
|
+
@media only screen and (max-width: 480px) {
|
|
3713
|
+
.compare-product-card__shimmerWrapper___YuAk_ .compare-product-card__imageShimmer___X9_wx {
|
|
3714
|
+
width: 76px !important;
|
|
3715
|
+
}
|
|
3716
|
+
}
|
|
3652
3717
|
.compare-product-card__shimmerWrapper___YuAk_ .compare-product-card__lineShimmer___WCQwb {
|
|
3653
3718
|
border-radius: 12px;
|
|
3654
3719
|
}
|