verdnatura-chat/app/views/ChangeAvatarView/styles.ts

28 lines
470 B
TypeScript
Raw Permalink Normal View History

2022-12-07 03:11:25 +00:00
import { StyleSheet } from 'react-native';
import sharedStyles from '../Styles';
2022-12-07 03:11:25 +00:00
export default StyleSheet.create({
avatarContainer: {
alignItems: 'center',
justifyContent: 'center',
2023-01-17 02:12:09 +00:00
marginBottom: 24
2022-12-07 03:11:25 +00:00
},
separator: {
marginVertical: 16
},
itemLabel: {
2022-12-07 21:02:16 +00:00
marginBottom: 12,
fontSize: 14,
2022-12-07 21:02:16 +00:00
...sharedStyles.textSemibold
},
2023-01-10 03:38:37 +00:00
containerImagesUploaded: {
flex: 1
},
containerAvatarSuggestion: {
flex: 1,
flexWrap: 'wrap',
flexDirection: 'row'
2022-12-07 03:11:25 +00:00
}
});