operation_audit_css.js 785 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. import React from 'react';
  2. import {StyleSheet} from 'react-native';
  3. const operation_audit_css = StyleSheet.create({
  4. container: {
  5. backgroundColor: 'white',
  6. flex: 1,
  7. },
  8. title: {
  9. fontSize: 15,
  10. color: 'blue',
  11. },
  12. footer: {
  13. flexDirection: 'row',
  14. height: 24,
  15. justifyContent: 'center',
  16. alignItems: 'center',
  17. marginBottom: 10,
  18. },
  19. itemTop: {
  20. fontSize: 16,
  21. fontWeight: '600',
  22. },
  23. itemView: {
  24. flexDirection: 'row',
  25. marginTop: 5,
  26. },
  27. itemViewName: {
  28. fontSize: 14,
  29. justifyContent: 'flex-start',
  30. flex: 1,
  31. },
  32. itemViewText: {
  33. fontSize: 14,
  34. color: '#1E90FF',
  35. },
  36. fontSize: {
  37. fontSize: 16,
  38. // fontFamily: 'PingFang-SC-Regular',
  39. color: '#333333',
  40. },
  41. });
  42. export default operation_audit_css;