diff options
-rw-r--r-- | .circleci/config.yml | 4 | ||||
-rw-r--r-- | src/components/moments/IndividualMomentTitleBar.tsx | 9 |
2 files changed, 6 insertions, 7 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 8878e2e3..f8b4fcc9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -39,12 +39,12 @@ workflows: jobs: - checkout_code - analyze_code: - requries: -checkout_code + requires: -checkout_code - rn/ios_build: name: build_ios_release project_path: ios/Frontend.xcodeproj device: 'iPhone 11' - build_configuration: Release + build_configuration: Debug scheme: Frontend requires: - analyze_code diff --git a/src/components/moments/IndividualMomentTitleBar.tsx b/src/components/moments/IndividualMomentTitleBar.tsx index 88e0c308..79453ade 100644 --- a/src/components/moments/IndividualMomentTitleBar.tsx +++ b/src/components/moments/IndividualMomentTitleBar.tsx @@ -29,14 +29,14 @@ const styles = StyleSheet.create({ container: { flexDirection: 'row', alignItems: 'center', - justifyContent: 'center', + justifyContent: 'flex-start', height: '5%', }, headerContainer: { - flexShrink: 1, - marginLeft: '11%', + width: '80%', }, header: { + textAlign: 'center', color: 'white', fontSize: normalize(18), fontWeight: '700', @@ -44,10 +44,9 @@ const styles = StyleSheet.create({ letterSpacing: normalize(1.3), }, closeButton: { - position: 'absolute', height: '50%', aspectRatio: 1, - left: '3%', + left: '8%', }, }); |