diff options
author | Brian Kim <brian@tagg.id> | 2021-06-16 23:14:13 +0900 |
---|---|---|
committer | Brian Kim <brian@tagg.id> | 2021-06-16 23:14:13 +0900 |
commit | 902ad06d502024e1e42187887e07a7ac59d662e8 (patch) | |
tree | 84ce037a5088daebec050084f866698319ddfb37 | |
parent | 41a9ecf350ccc1567e7cbf9c0a3413565d2397f7 (diff) |
Remove some comments
-rw-r--r-- | src/components/comments/AddComment.tsx | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/components/comments/AddComment.tsx b/src/components/comments/AddComment.tsx index 4a1822a3..eda04752 100644 --- a/src/components/comments/AddComment.tsx +++ b/src/components/comments/AddComment.tsx @@ -130,31 +130,23 @@ const AddComment: React.FC<AddCommentProps> = ({momentId, placeholderText}) => { const styles = StyleSheet.create({ container: { - // backgroundColor: '#f7f7f7', alignItems: 'center', justifyContent: 'center', width: SCREEN_WIDTH, }, textContainer: { width: '95%', - // flexDirection: 'row', backgroundColor: '#e8e8e8', alignItems: 'center', - // alignSelf: 'center', justifyContent: 'space-between', - // justifyContent: 'center', margin: '3%', borderRadius: 25, - // borderWidth: 1, - // flex: 1, height: normalize(45), }, text: { flex: 1, padding: '1%', - // marginHorizontal: '1%', maxHeight: 100, - // borderWidth: 1, }, avatar: { height: 35, |