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

37 lines
617 B
TypeScript
Raw 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({
disabled: {
opacity: 0.3
},
avatarContainer: {
alignItems: 'center',
justifyContent: 'center',
marginBottom: 32
},
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
},
avatarButton: {
width: 64,
height: 64,
alignItems: 'center',
justifyContent: 'center',
marginRight: 20,
marginBottom: 12,
borderRadius: 4
},
containerAvatarSuggestion: {
flex: 1,
flexWrap: 'wrap',
flexDirection: 'row'
2022-12-07 03:11:25 +00:00
}
});