Skip to content

Commit

Permalink
Lightning address: intro: fix spacing for low res devices
Browse files Browse the repository at this point in the history
  • Loading branch information
kaloudis committed Apr 25, 2024
1 parent 3f56253 commit de83517
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions views/Settings/LightningAddress/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import * as React from 'react';
import {
Dimensions,
FlatList,
ScrollView,
StyleSheet,
TouchableOpacity,
View
Expand Down Expand Up @@ -543,9 +544,8 @@ export default class LightningAddress extends React.Component<
!lightningAddressHandle &&
!hasChannels && (
<>
<View
<ScrollView
style={{
flex: 1,
marginLeft: 5,
marginRight: 5
}}
Expand Down Expand Up @@ -596,10 +596,12 @@ export default class LightningAddress extends React.Component<
)}
</Text>
)}
</View>
<View>
<View
style={{ bottom: 15, margin: 10 }}
style={{
margin: 10,
marginTop: 25,
bottom: 15
}}
>
<Button
title={localeString(
Expand Down Expand Up @@ -676,7 +678,7 @@ export default class LightningAddress extends React.Component<
secondary
/>
</View>
</View>
</ScrollView>
</>
)}
{lightningAddressHandle && (
Expand Down

0 comments on commit de83517

Please sign in to comment.