您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

styles.js 1.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. // @flow
  2. import { BoxModel, ColorPalette } from '../../styles';
  3. /**
  4. * The styles of the feature base/participants.
  5. */
  6. export default {
  7. /**
  8. * Container for the avatar in the view.
  9. */
  10. avatarContainer: {
  11. alignItems: 'center',
  12. justifyContent: 'center'
  13. },
  14. /**
  15. * Style for the text rendered when there is a connectivity problem.
  16. */
  17. connectionInfoText: {
  18. color: ColorPalette.white,
  19. fontSize: 12,
  20. marginVertical: BoxModel.margin,
  21. marginHorizontal: BoxModel.margin,
  22. textAlign: 'center'
  23. },
  24. /**
  25. * Style for the container of the text rendered when there is a
  26. * connectivity problem.
  27. */
  28. connectionInfoContainer: {
  29. alignSelf: 'center',
  30. backgroundColor: ColorPalette.darkGrey,
  31. borderRadius: 20,
  32. marginTop: BoxModel.margin
  33. },
  34. /**
  35. * {@code ParticipantView} style.
  36. */
  37. participantView: {
  38. alignItems: 'stretch',
  39. flex: 1,
  40. justifyContent: 'center'
  41. }
  42. };