import React from 'react'; import {StyleSheet} from 'react-native'; const invoice_inquiry_css = StyleSheet.create({ container: { backgroundColor: 'white', flex: 1, }, title: { fontSize: 15, color: 'blue', }, footer: { flexDirection: 'row', height: 24, justifyContent: 'center', alignItems: 'center', marginBottom: 10, }, itemTop: { fontSize: 16, fontWeight: '600', }, itemView: { flexDirection: 'row', marginTop: 5, }, itemViewName: { fontSize: 14, justifyContent: 'flex-start', flex: 1, }, itemViewText: { fontSize: 14, color: '#1E90FF', }, listHead: { color: '#050505', fontSize: 16, fontWeight: 'bold', }, listRedHead: { backgroundColor: '#F06969', justifyContent: 'center', alignItems: 'center', width: 70, }, listInvalidHead: { backgroundColor: '#507FF5', justifyContent: 'center', alignItems: 'center', width: 100, }, listBlueHead: { backgroundColor: '#507FF5', justifyContent: 'center', alignItems: 'center', width: 70, }, listBlueStatus: { borderWidth: 1, borderRadius: 24, width: 100, height: 25, alignItems: 'center', justifyContent: 'center', borderColor: '#2A67FE', }, listRedStatus: { borderWidth: 1, borderRadius: 24, width: 100, height: 25, alignItems: 'center', justifyContent: 'center', borderColor: '#2A67FE', }, }); export default invoice_inquiry_css;