invoice_red_rush_css.js 698 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. import React from 'react';
  2. import {StyleSheet, Dimensions} from 'react-native';
  3. const invoice_red_rush_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. });
  37. export default invoice_red_rush_css;