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.

styles.js 1.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. import BaseTheme from '../../../base/ui/components/BaseTheme.native';
  2. export default {
  3. speakerStatsContainer: {
  4. flexDirection: 'column',
  5. flex: 1,
  6. height: 'auto',
  7. paddingHorizontal: BaseTheme.spacing[3],
  8. backgroundColor: BaseTheme.palette.ui01
  9. },
  10. speakerStatsItemContainer: {
  11. flexDirection: 'row',
  12. alignSelf: 'stretch',
  13. height: BaseTheme.spacing[9],
  14. alignItems: 'center'
  15. },
  16. speakerStatsAvatar: {
  17. width: BaseTheme.spacing[5],
  18. height: BaseTheme.spacing[5],
  19. marginRight: BaseTheme.spacing[3]
  20. },
  21. speakerStatsNameTime: {
  22. flexDirection: 'row',
  23. flex: 1,
  24. justifyContent: 'space-between',
  25. alignItems: 'center'
  26. },
  27. speakerStatsText: {
  28. ...BaseTheme.typography.bodyShortRegularLarge,
  29. color: BaseTheme.palette.text01
  30. },
  31. speakerStatsTime: {
  32. paddingHorizontal: 4,
  33. paddingVertical: 2,
  34. borderRadius: 4
  35. },
  36. speakerStatsDominant: {
  37. backgroundColor: BaseTheme.palette.success02
  38. },
  39. speakerStatsLeft: {
  40. color: BaseTheme.palette.text03
  41. },
  42. speakerStatsSearch: {
  43. wrapper: {
  44. marginLeft: 0,
  45. marginRight: 0,
  46. marginTop: BaseTheme.spacing[3],
  47. marginBottom: BaseTheme.spacing[3],
  48. flexDirection: 'row',
  49. alignItems: 'center'
  50. },
  51. input: {
  52. textAlign: 'left'
  53. },
  54. searchIcon: {
  55. width: 10,
  56. height: 20,
  57. marginLeft: BaseTheme.spacing[3]
  58. }
  59. }
  60. };