You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. import BaseTheme from '../../../base/ui/components/BaseTheme.native';
  2. export default {
  3. container: {
  4. backgroundColor: BaseTheme.palette.ui01,
  5. flex: 1
  6. },
  7. clearableInput: {
  8. wrapper: {
  9. marginBottom: BaseTheme.spacing[3],
  10. marginTop: BaseTheme.spacing[3]
  11. },
  12. input: {
  13. textAlign: 'left'
  14. }
  15. },
  16. grid: {
  17. flex: 1,
  18. marginLeft: BaseTheme.spacing[3],
  19. marginRight: BaseTheme.spacing[3]
  20. },
  21. credit: {
  22. alignItems: 'center',
  23. backgroundColor: BaseTheme.palette.ui01,
  24. display: 'flex',
  25. flexDirection: 'row',
  26. height: 56,
  27. justifyContent: 'center',
  28. marginBottom: BaseTheme.spacing[0],
  29. paddingBottom: BaseTheme.spacing[4],
  30. width: '100%'
  31. },
  32. creditText: {
  33. color: BaseTheme.palette.text01,
  34. fontWeight: 'bold'
  35. }
  36. };