Commit 1bcedfdb authored by 李彥志's avatar 李彥志

Upload styles

parent 8a554815
import { StyleSheet, Dimensions } from 'react-native';
const { width, height } = Dimensions.get('window');
export default StyleSheet.create({
modalContainer: {
width,
height,
backgroundColor: 'rgba(4,4,15, 0.4)',
justifyContent: 'center',
flexDirection: 'column',
alignItems: 'center'
},
scrollViewContainer: {
flex: 1
},
modalContent: {
width: 270,
justifyContent: 'center',
flexDirection: 'column',
backgroundColor: '#F8F8F8',
borderColor: '#F8F8F8',
borderWidth: 1,
borderRadius: 15,
marginVertical: 45
},
modalTitle: {
width: 270,
height: 45,
flexDirection: 'column',
justifyContent: 'flex-start',
alignItems: 'center'
},
modalTitle_txt: {
lineHeight: 22,
fontSize: 17,
color: '#000',
fontWeight: 'bold',
marginTop: 19
},
modalMessage: {
width: 270
},
modalMessage_txt: {
marginHorizontal: 16,
marginVertical: 19,
lineHeight: 22,
textAlign: 'center',
fontSize: 15,
color: '#000'
},
modalFooter: {
width: 270,
height: 44,
borderTopWidth: 1,
borderColor: '#BCBBC1',
flexDirection: 'row'
},
modalFooter_btn: {
flexDirection: 'row',
justifyContent: 'center',
alignItems: 'center',
flex: 1
},
modalFooter_txt: {
fontSize: 17,
color: '#396C9B',
textAlign: 'center'
}
});
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment