Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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