Skip to content

Commit

Permalink
adjust bottom padding for modal text
Browse files Browse the repository at this point in the history
  • Loading branch information
gijoe0295 committed Dec 2, 2024
1 parent 6f83d98 commit 2118474
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/FeatureTrainingModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ function FeatureTrainingModal({
</View>
<View style={[styles.mt5, styles.mh5]}>
{!!title && !!description && (
<View style={[onboardingIsMediumOrLargerScreenWidth ? [styles.gap1, styles.mb8] : [styles.mb10]]}>
<View style={[onboardingIsMediumOrLargerScreenWidth ? [styles.gap1, styles.mb8] : [styles.mb10], !!image && styles.mb5]}>
{typeof title === 'string' ? <Text style={[styles.textHeadlineH1]}>{title}</Text> : title}
<Text style={styles.textSupporting}>{description}</Text>
{secondaryDescription.length > 0 && <Text style={[styles.textSupporting, styles.mt4]}>{secondaryDescription}</Text>}
Expand Down

0 comments on commit 2118474

Please sign in to comment.