Styling fixes

This commit is contained in:
Imbus 2023-12-15 03:17:14 +01:00
parent 556bf52865
commit 53927b7cc5
2 changed files with 10 additions and 7 deletions

View file

@ -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} />
);
}

View file

@ -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
},
});