Skip to content

Commit

Permalink
Merge pull request #2827 from shubhamkmr04/shubham/receive-view-margi…
Browse files Browse the repository at this point in the history
…n-fix

Receive: Fixed margin
  • Loading branch information
kaloudis authored Feb 11, 2025
2 parents 28a09ad + 72bb97e commit ef46f85
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions views/Receive.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2597,7 +2597,12 @@ export default class Receive extends React.Component<
),
borderRadius: 12,
borderWidth: 0,
height: 30
height: 30,
marginBottom:
Platform.OS ===
'ios'
? 16
: 0
}}
innerBorderStyle={{
color: themeColor(
Expand Down Expand Up @@ -2645,7 +2650,12 @@ export default class Receive extends React.Component<
style={{
flexDirection:
'row',
marginTop: 20
marginTop: 16,
marginBottom:
Platform.OS ===
'ios'
? 10
: 6
}}
>
<View
Expand Down

0 comments on commit ef46f85

Please sign in to comment.