invoice_inquiry_css.js 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. import React from 'react';
  2. import {StyleSheet} from 'react-native';
  3. const invoice_inquiry_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. listHead: {
  37. color: '#050505',
  38. fontSize: 16,
  39. fontWeight: 'bold',
  40. },
  41. listRedHead: {
  42. backgroundColor: '#F06969',
  43. justifyContent: 'center',
  44. alignItems: 'center',
  45. width: 70,
  46. },
  47. listInvalidHead: {
  48. backgroundColor: '#507FF5',
  49. justifyContent: 'center',
  50. alignItems: 'center',
  51. width: 100,
  52. },
  53. listBlueHead: {
  54. backgroundColor: '#507FF5',
  55. justifyContent: 'center',
  56. alignItems: 'center',
  57. width: 70,
  58. },
  59. listBlueStatus: {
  60. borderWidth: 1,
  61. borderRadius: 24,
  62. width: 100,
  63. height: 25,
  64. alignItems: 'center',
  65. justifyContent: 'center',
  66. borderColor: '#2A67FE',
  67. },
  68. listRedStatus: {
  69. borderWidth: 1,
  70. borderRadius: 24,
  71. width: 100,
  72. height: 25,
  73. alignItems: 'center',
  74. justifyContent: 'center',
  75. borderColor: '#2A67FE',
  76. },
  77. });
  78. export default invoice_inquiry_css;