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;
|
text: string;
|
||||||
}): JSX.Element {
|
}): JSX.Element {
|
||||||
return (
|
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%",
|
width: "100%",
|
||||||
height: "100%",
|
height: "100%",
|
||||||
alignItems: "center",
|
alignItems: "center",
|
||||||
justifyContent: "center",
|
justifyContent: "flex-start",
|
||||||
},
|
},
|
||||||
newPostInput: {
|
newPostInput: {
|
||||||
backgroundColor: colorScheme.postBox,
|
backgroundColor: colorScheme.postBox,
|
||||||
width: "100%",
|
borderRadius: 6,
|
||||||
height: "100%",
|
margin : 10,
|
||||||
padding: 10,
|
width: "90%",
|
||||||
|
minHeight: "50%",
|
||||||
|
textAlignVertical: "top",
|
||||||
|
padding: 15,
|
||||||
color: colorScheme.postFont,
|
color: colorScheme.postFont,
|
||||||
},
|
},
|
||||||
errorText: {
|
errorText: {
|
||||||
color: colorScheme.error,
|
color: colorScheme.error,
|
||||||
},
|
},
|
||||||
navButton: {
|
navButton: {
|
||||||
backgroundColor: colorScheme.background,
|
// backgroundColor: colorScheme.background,
|
||||||
color: colorScheme.postFont,
|
color: colorScheme.accept
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue