37 lines
771 B
JavaScript
37 lines
771 B
JavaScript
import { StyleSheet } from 'react-native';
|
|
|
|
import { GlobalTheme, Screen } from '../../../theme';
|
|
|
|
export const styles = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
// backgroundColor: GlobalTheme.colors.white,
|
|
paddingHorizontal: 10,
|
|
},
|
|
logoContainer: {
|
|
alignItems: 'center',
|
|
},
|
|
appLogo: {
|
|
height: 200,
|
|
width: 200,
|
|
resizeMode: 'contain',
|
|
},
|
|
titleContainer: {
|
|
alignSelf: 'center',
|
|
// marginTop: 15,
|
|
},
|
|
titleText: {
|
|
fontSize: 25,
|
|
fontWeight: 'bold',
|
|
color: GlobalTheme.colors.black,
|
|
},
|
|
btnbg: {
|
|
backgroundColor: GlobalTheme.colors.secondary, borderRadius: GlobalTheme.borderRadius.md
|
|
},
|
|
btntext: {
|
|
color: GlobalTheme.colors.white,
|
|
fontSize: GlobalTheme.typography.fontSize.medium
|
|
}
|
|
|
|
});
|