Skip to content

Commit

Permalink
update time picker styles
Browse files Browse the repository at this point in the history
  • Loading branch information
perunt committed Sep 4, 2023
1 parent ce90d1b commit 2f7de91
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/TimePicker.js
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ function TimePicker({forwardedRef, value, errorText, onInputChange}) {
<View style={[styles.flex1, styles.w100, styles.alignItemsCenter, styles.justifyContentCenter]}>
<View
nativeID={AMOUNT_VIEW_ID}
style={[styles.flexRow, styles.w100, styles.alignItemsCenter, styles.justifyContentCenter]}
style={[styles.flexRow, styles.w100, styles.alignItemsCenter, styles.justifyContentCenter, styles.timePickerInputsContainer]}
>
<AmountTextInput
formattedAmount={hours}
Expand Down
8 changes: 6 additions & 2 deletions src/styles/styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -3913,6 +3913,7 @@ const styles = {
},
timePickerSemiDot: {
fontSize: 69,
height: 84,
},
timePickerSwitcherContainer: {
flexDirection: 'row',
Expand Down Expand Up @@ -3945,8 +3946,11 @@ const styles = {
fontSize: 50,
},
setTimeFormButtonContainer: {
minHeight: 54
}
minHeight: 54,
},
timePickerInputsContainer: {
maxHeight: 70,
},
};

export default styles;

0 comments on commit 2f7de91

Please sign in to comment.