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.ts 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. import { BoxModel } from '../../styles/components/styles/BoxModel';
  2. import { ColorPalette } from '../../styles/components/styles/ColorPalette';
  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. };