import React from 'react'; import {StyleSheet} from 'react-native'; const operation_audit_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', }, fontSize: { fontSize: 16, // fontFamily: 'PingFang-SC-Regular', color: '#333333', }, }); export default operation_audit_css;