diff options
author | Ivan Chen <ivan@tagg.id> | 2021-06-29 17:06:19 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-29 17:06:19 -0400 |
commit | 66c974161b59f1e3570e2a4a42334fabc16c2129 (patch) | |
tree | 7a1546101e2966b7bb38bf92bca4be64b1ccd7b6 /src/components/camera/styles.tsx | |
parent | 53bdc94cf0491e348b7d4ad61e51ce1844423773 (diff) | |
parent | d4b210518eaffd3bf1320ca7ce7fa4a6d611528f (diff) |
Merge pull request #476 from shravyaramesh/tma937-tagg-camera
[TMA-937] Tagg Camera
Diffstat (limited to 'src/components/camera/styles.tsx')
-rw-r--r-- | src/components/camera/styles.tsx | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/src/components/camera/styles.tsx b/src/components/camera/styles.tsx new file mode 100644 index 00000000..33b47cc4 --- /dev/null +++ b/src/components/camera/styles.tsx @@ -0,0 +1,53 @@ +import {StyleSheet} from 'react-native'; +import {normalize, SCREEN_WIDTH} from '../../utils/layouts'; + +export const styles = StyleSheet.create({ + saveButton: { + zIndex: 1, + flexDirection: 'column', + justifyContent: 'center', + alignItems: 'center', + width: (SCREEN_WIDTH - 100) / 2, + }, + saveButtonLabel: { + color: 'white', + fontWeight: '700', + fontSize: normalize(12), + lineHeight: normalize(14.32), + marginTop: 5, + zIndex: 999, + }, + flashButtonContainer: { + position: 'absolute', + backgroundColor: '#808080', + opacity: 0.25, + zIndex: 1, + top: normalize(50), + right: 0, + marginRight: normalize(18), + height: 86, + width: 49, + flexDirection: 'column', + justifyContent: 'center', + alignItems: 'center', + borderRadius: 30, + }, + galleryIcon: { + borderWidth: 2, + borderColor: 'white', + borderRadius: 5, + width: 40, + height: 40, + }, + galleryIconEmpty: { + borderWidth: 2, + borderColor: 'white', + borderRadius: 5, + width: 40, + height: 40, + backgroundColor: 'grey', + }, + flashIcon: { + zIndex: 2, + }, +}); |