mirror of
https://github.com/ecency/ecency-mobile.git
synced 2025-01-02 19:06:39 +03:00
fixed background missing color
This commit is contained in:
parent
f6a982ed51
commit
b30282fd08
@ -2,7 +2,8 @@ import EStyleSheet from 'react-native-extended-stylesheet';
|
||||
|
||||
export default EStyleSheet.create({
|
||||
container: {
|
||||
flexDirection: 'column',
|
||||
backgroundColor: '$primaryBackgroundColor',
|
||||
flex: 1,
|
||||
},
|
||||
header: {
|
||||
marginHorizontal: 16,
|
||||
@ -18,7 +19,7 @@ export default EStyleSheet.create({
|
||||
flexDirection: 'row',
|
||||
},
|
||||
scroll: {
|
||||
height: '$deviceHeight / 1.135',
|
||||
height: '$deviceHeight',
|
||||
backgroundColor: '$primaryBackgroundColor',
|
||||
marginBottom: 50,
|
||||
},
|
||||
|
@ -153,7 +153,7 @@ class PostDisplayView extends PureComponent {
|
||||
}
|
||||
|
||||
return (
|
||||
<Fragment>
|
||||
<View style={styles.container}>
|
||||
<ScrollView style={styles.scroll} onScroll={event => this._handleOnScroll(event)}>
|
||||
{parentPost && <ParentPost post={parentPost} />}
|
||||
|
||||
@ -197,7 +197,7 @@ class PostDisplayView extends PureComponent {
|
||||
)}
|
||||
</ScrollView>
|
||||
{post && this._getTabBar(true)}
|
||||
</Fragment>
|
||||
</View>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user