29 lines
524 B
TypeScript
29 lines
524 B
TypeScript
|
|
import { Spacing } from '@/constants/theme';
|
||
|
|
import { StyleSheet } from 'react-native';
|
||
|
|
|
||
|
|
export const styles = StyleSheet.create({
|
||
|
|
container: {
|
||
|
|
position: 'absolute',
|
||
|
|
top: 0,
|
||
|
|
left: 0,
|
||
|
|
width: '100%',
|
||
|
|
height: '100%',
|
||
|
|
display: 'flex',
|
||
|
|
flexDirection: 'column',
|
||
|
|
alignItems: 'center',
|
||
|
|
justifyContent: 'center',
|
||
|
|
},
|
||
|
|
logo: {
|
||
|
|
width: 130,
|
||
|
|
height: 109,
|
||
|
|
},
|
||
|
|
title: {
|
||
|
|
fontSize: 16,
|
||
|
|
fontWeight: 'bold',
|
||
|
|
},
|
||
|
|
description: {
|
||
|
|
fontSize: 14,
|
||
|
|
marginTop: Spacing.sm,
|
||
|
|
},
|
||
|
|
});
|