Skip to content
This repository was archived by the owner on Feb 23, 2021. It is now read-only.

Commit 1714eac

Browse files
committed
Fix seed view layout
1 parent bfcc1ba commit 1714eac

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/view/seed.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,16 @@ import { color, font } from '../component/style';
1212
// Seed View
1313
//
1414

15+
const styles = StyleSheet.create({
16+
content: {
17+
flexBasis: 0,
18+
},
19+
});
20+
1521
const SeedView = ({ store, wallet }) => (
1622
<SplitBackground image="purple-gradient-bg" bottom={color.blackDark}>
1723
<CopySection />
18-
<MainContent>
24+
<MainContent style={styles.content}>
1925
<WordList seedMnemonic={store.seedMnemonic.slice()} />
2026
<GlasButton onPress={() => wallet.initSeedVerify()}>Next</GlasButton>
2127
</MainContent>

0 commit comments

Comments
 (0)