Skip to content

Commit

Permalink
fix counter styles
Browse files Browse the repository at this point in the history
  • Loading branch information
SorinC6 committed Oct 9, 2023
1 parent c097e07 commit c7f12e5
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,11 @@ export const CompletedOrders = () => {
})}
</ScrollView>

<Counter counter={normalizedOrders?.length ?? 0} customText={strings.listCompletedOrders} />
<Counter
style={styles.counter}
counter={normalizedOrders?.length ?? 0}
customText={strings.listCompletedOrders}
/>
</>
)
}
Expand Down Expand Up @@ -254,4 +258,7 @@ const styles = StyleSheet.create({
flexDirection: 'row',
alignItems: 'center',
},
counter: {
paddingVertical: 16,
},
})

0 comments on commit c7f12e5

Please sign in to comment.