diff --git a/src/components/PostsContainer.tsx b/src/components/PostsContainer.tsx
index 5ccccdc..be439d6 100644
--- a/src/components/PostsContainer.tsx
+++ b/src/components/PostsContainer.tsx
@@ -89,6 +89,6 @@ function NavButton({
text: string;
}): JSX.Element {
return (
-
+
);
}
diff --git a/src/util/style.ts b/src/util/style.ts
index 91c0896..094e32d 100644
--- a/src/util/style.ts
+++ b/src/util/style.ts
@@ -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
},
});