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

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