mirror of
https://github.com/streetwriters/notesnook.git
synced 2026-02-24 04:00:59 +01:00
mobile: fix gap between plan cards
This commit is contained in:
committed by
Abdullah Atta
parent
28daa38d80
commit
d8534da4df
@@ -312,7 +312,7 @@ const PayWall = (props: NavigationProps<"PayWall">) => {
|
||||
<View
|
||||
style={{
|
||||
flexDirection: isTablet ? "row" : "column",
|
||||
gap: isTablet ? DefaultAppStyles.GAP : 0
|
||||
gap: !isTablet ? DefaultAppStyles.GAP : 0
|
||||
}}
|
||||
>
|
||||
{pricingPlans.pricingPlans.map((plan) =>
|
||||
@@ -1102,7 +1102,7 @@ const PricingPlanCard = ({
|
||||
</View>
|
||||
</View>
|
||||
|
||||
{pricingPlans?.loadingPlans ? (
|
||||
{pricingPlans?.loadingPlans || (!price && !WebPlan?.price.gross) ? (
|
||||
<ActivityIndicator size="small" color={colors.primary.accent} />
|
||||
) : (
|
||||
<View>
|
||||
|
||||
Reference in New Issue
Block a user