invoice_head_css.js 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. import React from 'react';
  2. import {Dimensions, StyleSheet} from 'react-native';
  3. const invoice_head_css = StyleSheet.create({
  4. list_view: {
  5. flexDirection: 'row',
  6. justifyContent: 'space-around',
  7. width: Dimensions.get('window').width,
  8. marginTop: 10,
  9. },
  10. list_title_text: {
  11. width: 70,
  12. textAlign: 'center',
  13. },
  14. list_item_text: {
  15. width: 70,
  16. textAlign: 'center',
  17. },
  18. title: {
  19. fontSize: 15,
  20. color: 'blue',
  21. },
  22. footer: {
  23. flexDirection: 'row',
  24. height: 24,
  25. justifyContent: 'center',
  26. alignItems: 'center',
  27. marginBottom: 10,
  28. },
  29. content: {
  30. fontSize: 15,
  31. color: 'black',
  32. },
  33. container: {
  34. backgroundColor: 'white',
  35. flex: 1,
  36. },
  37. itemTop: {
  38. fontSize: 16,
  39. fontWeight: '600',
  40. textAlign: 'center',
  41. },
  42. itemView: {
  43. flexDirection: 'row',
  44. margin: 5,
  45. justifyContent: 'space-between',
  46. },
  47. itemViewName: {
  48. fontSize: 14,
  49. justifyContent: 'flex-start',
  50. flex: 1,
  51. },
  52. itemViewText: {
  53. fontSize: 14,
  54. color: '#1E90FF',
  55. },
  56. });
  57. export default invoice_head_css;