diff --git a/src/components/Modals/PreferredCountriesModal/PreferredCountriesDropdown/PreferredCountriesDropdown.scss b/src/components/Modals/PreferredCountriesModal/PreferredCountriesDropdown/PreferredCountriesDropdown.scss index 8cc69906..1a0d6900 100644 --- a/src/components/Modals/PreferredCountriesModal/PreferredCountriesDropdown/PreferredCountriesDropdown.scss +++ b/src/components/Modals/PreferredCountriesModal/PreferredCountriesDropdown/PreferredCountriesDropdown.scss @@ -17,13 +17,13 @@ @include mobile-or-tablet-screen { height: unset; - max-height: calc(100vh - 28rem); + max-height: calc(100% - 28rem); } &--no-footer { height: 44rem; @include mobile-or-tablet-screen { - height: 100vh; + height: 100%; max-height: unset; } } diff --git a/src/components/Modals/PreferredCountriesModal/PreferredCountriesModal.scss b/src/components/Modals/PreferredCountriesModal/PreferredCountriesModal.scss index 221fba82..3fec817b 100644 --- a/src/components/Modals/PreferredCountriesModal/PreferredCountriesModal.scss +++ b/src/components/Modals/PreferredCountriesModal/PreferredCountriesModal.scss @@ -11,7 +11,7 @@ left: 0; background: #fff; z-index: 1; - height: calc(100vh - 7.5rem); + height: calc(100% - 7.5rem); & .mobile-wrapper { &__header { diff --git a/src/components/PaymentMethodCard/PaymentMethodCard.tsx b/src/components/PaymentMethodCard/PaymentMethodCard.tsx index 7f2235d1..6643bb4e 100644 --- a/src/components/PaymentMethodCard/PaymentMethodCard.tsx +++ b/src/components/PaymentMethodCard/PaymentMethodCard.tsx @@ -48,11 +48,13 @@ const PaymentMethodCard = ({ })} > {!toAdd ? ( -
+
onClickAdd?.(paymentMethod)} + > diff --git a/src/pages/my-ads/components/AdConditionsSection/AdCondtionsSection.scss b/src/pages/my-ads/components/AdConditionsSection/AdCondtionsSection.scss index bb779cb6..aba751b8 100644 --- a/src/pages/my-ads/components/AdConditionsSection/AdCondtionsSection.scss +++ b/src/pages/my-ads/components/AdConditionsSection/AdCondtionsSection.scss @@ -6,7 +6,7 @@ @include mobile { padding: 1.6rem; - height: calc(100vh - 20rem); + height: calc(100% - 20rem); overflow: auto; } } diff --git a/src/routes/AppContent/index.scss b/src/routes/AppContent/index.scss index 3855fe5b..1aeede48 100644 --- a/src/routes/AppContent/index.scss +++ b/src/routes/AppContent/index.scss @@ -51,3 +51,7 @@ border-bottom: 1px solid #f2f3f4; } } + +.languages-modal__body { + margin: 1.6rem; +}