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.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. // @flow
  2. import {
  3. MD_FONT_SIZE,
  4. MD_ITEM_HEIGHT,
  5. MD_ITEM_MARGIN_PADDING
  6. } from '../../../base/dialog';
  7. import { ColorPalette, createStyleSheet } from '../../../base/styles';
  8. import BaseTheme from '../../../base/ui/components/BaseTheme.native';
  9. export default createStyleSheet({
  10. participantNameContainer: {
  11. alignItems: 'center',
  12. borderBottomColor: ColorPalette.lightGrey,
  13. borderBottomWidth: 1,
  14. borderTopLeftRadius: 16,
  15. borderTopRightRadius: 16,
  16. flexDirection: 'row',
  17. height: MD_ITEM_HEIGHT,
  18. paddingLeft: MD_ITEM_MARGIN_PADDING
  19. },
  20. participantNameLabel: {
  21. color: ColorPalette.lightGrey,
  22. flexShrink: 1,
  23. fontSize: MD_FONT_SIZE,
  24. marginLeft: MD_ITEM_MARGIN_PADDING,
  25. opacity: 0.90
  26. },
  27. statsTitleText: {
  28. fontSize: 16,
  29. fontWeight: 'bold',
  30. marginRight: 3
  31. },
  32. statsInfoText: {
  33. fontSize: 16,
  34. marginRight: 2,
  35. marginLeft: 2
  36. },
  37. statsInfoCell: {
  38. alignItems: 'center',
  39. flexDirection: 'row',
  40. height: 30,
  41. justifyContent: 'flex-start'
  42. },
  43. statsWrapper: {
  44. marginVertical: 10
  45. },
  46. volumeSliderContainer: {
  47. alignItems: 'center',
  48. flexDirection: 'row',
  49. marginBottom: BaseTheme.spacing[3],
  50. marginTop: BaseTheme.spacing[3],
  51. width: '100%'
  52. },
  53. volumeSliderIcon: {
  54. marginLeft: BaseTheme.spacing[1]
  55. },
  56. sliderContainer: {
  57. marginLeft: BaseTheme.spacing[3],
  58. width: 342
  59. }
  60. });