Styling fixes
This commit is contained in:
parent
556bf52865
commit
53927b7cc5
2 changed files with 10 additions and 7 deletions
|
@ -89,6 +89,6 @@ function NavButton({
|
|||
text: string;
|
||||
}): JSX.Element {
|
||||
return (
|
||||
<Button title={text} onPress={onPress} color={style.navButton.color} />
|
||||
<Button title={text} onPress={onPress} />
|
||||
);
|
||||
}
|
||||
|
|
|
@ -50,20 +50,23 @@ export const style = StyleSheet.create({
|
|||
width: "100%",
|
||||
height: "100%",
|
||||
alignItems: "center",
|
||||
justifyContent: "center",
|
||||
justifyContent: "flex-start",
|
||||
},
|
||||
newPostInput: {
|
||||
backgroundColor: colorScheme.postBox,
|
||||
width: "100%",
|
||||
height: "100%",
|
||||
padding: 10,
|
||||
borderRadius: 6,
|
||||
margin : 10,
|
||||
width: "90%",
|
||||
minHeight: "50%",
|
||||
textAlignVertical: "top",
|
||||
padding: 15,
|
||||
color: colorScheme.postFont,
|
||||
},
|
||||
errorText: {
|
||||
color: colorScheme.error,
|
||||
},
|
||||
navButton: {
|
||||
backgroundColor: colorScheme.background,
|
||||
color: colorScheme.postFont,
|
||||
// backgroundColor: colorScheme.background,
|
||||
color: colorScheme.accept
|
||||
},
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue