Skip to content

Commit

Permalink
Re-add missing changes with signed commits
Browse files Browse the repository at this point in the history
  • Loading branch information
marcaaron committed Jan 19, 2024
1 parent 228e074 commit c509c20
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/styles/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4172,11 +4172,11 @@ const styles = (theme: ThemeColors) =>
},

updateRequiredViewHeader: {
height: 70,
height: variables.updateViewHeaderHeight,
},

updateRequiredViewTextContainer: {
width: 310,
width: variables.updateTextViewContainerWidth,
},
} satisfies Styles);

Expand Down
2 changes: 1 addition & 1 deletion src/styles/utils/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1435,7 +1435,7 @@ const createStyleUtils = (theme: ThemeColors, styles: ThemeStyles) => ({
{
alignItems: 'center',
justifyContent: 'center',
...(isSmallScreenWidth ? {} : {paddingBottom: 160}),
...(isSmallScreenWidth ? {} : styles.pb40),
},
],

Expand Down
4 changes: 4 additions & 0 deletions src/styles/utils/spacing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -533,6 +533,10 @@ export default {
paddingBottom: 80,
},

pb40: {
paddingBottom: 160,
},

pb10Percentage: {
paddingBottom: '10%',
},
Expand Down
2 changes: 2 additions & 0 deletions src/styles/variables.ts
Original file line number Diff line number Diff line change
Expand Up @@ -200,4 +200,6 @@ export default {
holdMenuIconSize: 64,
updateAnimationW: 390,
updateAnimationH: 240,
updateTextViewContainerWidth: 310,
updateViewHeaderHeight: 70,
} as const;

0 comments on commit c509c20

Please sign in to comment.