wait_invoice_css.js 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. import React from 'react';
  2. import {Dimensions, StyleSheet} from 'react-native';
  3. const wait_invoice_css = StyleSheet.create({
  4. list_view: {
  5. flexDirection: 'row',
  6. justifyContent: 'space-around',
  7. marginTop: 10,
  8. },
  9. title: {
  10. fontSize: 15,
  11. color: 'blue',
  12. },
  13. footer: {
  14. flexDirection: 'row',
  15. height: 24,
  16. justifyContent: 'center',
  17. alignItems: 'center',
  18. marginBottom: 10,
  19. },
  20. content: {
  21. fontSize: 15,
  22. color: 'black',
  23. },
  24. container: {
  25. backgroundColor: 'white',
  26. flex: 1,
  27. },
  28. itemTop: {
  29. fontSize: 16,
  30. fontWeight: '600',
  31. textAlign: 'center',
  32. },
  33. itemView: {
  34. flexDirection: 'row',
  35. margin: 5,
  36. justifyContent: 'space-between',
  37. },
  38. itemViewName: {
  39. fontSize: 14,
  40. justifyContent: 'flex-start',
  41. flex: 1,
  42. },
  43. itemViewText: {
  44. fontSize: 14,
  45. color: '#1E90FF',
  46. },
  47. list_title_text: {
  48. width: 70,
  49. textAlign: 'center',
  50. justifyContent: 'center',
  51. },
  52. list_item_text: {
  53. width: 70,
  54. textAlign: 'center',
  55. },
  56. listBlueHead: {
  57. backgroundColor: '#507FF5',
  58. justifyContent: 'center',
  59. alignItems: 'center',
  60. width: 70,
  61. },
  62. listRedHead: {
  63. backgroundColor: '#F06969',
  64. justifyContent: 'center',
  65. alignItems: 'center',
  66. width: 70,
  67. },
  68. listBlueStatus: {
  69. borderRadius: 24,
  70. width: 140,
  71. height: 27,
  72. alignItems: 'center',
  73. justifyContent: 'center',
  74. backgroundColor: 'rgba(225, 233, 255, 0.67)',
  75. },
  76. });
  77. export default wait_invoice_css;