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.ts 1.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. import BaseTheme from '../../../base/ui/components/BaseTheme.native';
  2. export default {
  3. customContainer: {
  4. marginVertical: BaseTheme.spacing[2]
  5. },
  6. speakerStatsContainer: {
  7. flexDirection: 'column',
  8. flex: 1,
  9. height: 'auto',
  10. paddingHorizontal: BaseTheme.spacing[3],
  11. backgroundColor: BaseTheme.palette.ui01
  12. },
  13. speakerStatsItemContainer: {
  14. flexDirection: 'row',
  15. alignSelf: 'stretch',
  16. height: BaseTheme.spacing[9],
  17. alignItems: 'center'
  18. },
  19. speakerStatsAvatar: {
  20. width: BaseTheme.spacing[5],
  21. height: BaseTheme.spacing[5],
  22. marginRight: BaseTheme.spacing[3]
  23. },
  24. speakerStatsNameTime: {
  25. flexDirection: 'row',
  26. flex: 1,
  27. justifyContent: 'space-between',
  28. alignItems: 'center'
  29. },
  30. speakerStatsText: {
  31. ...BaseTheme.typography.bodyShortRegularLarge,
  32. color: BaseTheme.palette.text01
  33. },
  34. speakerStatsTime: {
  35. paddingHorizontal: 4,
  36. paddingVertical: 2,
  37. borderRadius: 4
  38. },
  39. speakerStatsDominant: {
  40. backgroundColor: BaseTheme.palette.success02
  41. },
  42. speakerStatsLeft: {
  43. color: BaseTheme.palette.text03
  44. }
  45. };