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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. export default createStyleSheet({
  9. participantNameContainer: {
  10. alignItems: 'center',
  11. borderBottomColor: ColorPalette.lightGrey,
  12. borderBottomWidth: 1,
  13. borderTopLeftRadius: 16,
  14. borderTopRightRadius: 16,
  15. flexDirection: 'row',
  16. height: MD_ITEM_HEIGHT,
  17. paddingLeft: MD_ITEM_MARGIN_PADDING
  18. },
  19. participantNameLabel: {
  20. color: ColorPalette.lightGrey,
  21. flexShrink: 1,
  22. fontSize: MD_FONT_SIZE,
  23. marginLeft: MD_ITEM_MARGIN_PADDING,
  24. opacity: 0.90
  25. },
  26. statsTitleText: {
  27. fontSize: 16,
  28. fontWeight: 'bold',
  29. marginRight: 3
  30. },
  31. statsInfoText: {
  32. fontSize: 16,
  33. marginRight: 2,
  34. marginLeft: 2
  35. },
  36. statsInfoCell: {
  37. alignItems: 'center',
  38. flexDirection: 'row',
  39. height: 30,
  40. justifyContent: 'flex-start'
  41. },
  42. statsWrapper: {
  43. marginVertical: 10
  44. }
  45. });