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 308B

123456789101112131415
  1. import { createStyleSheet } from '../../styles';
  2. /**
  3. * The styles of the feature base/participants.
  4. */
  5. export default createStyleSheet({
  6. /**
  7. * {@code ParticipantView} style.
  8. */
  9. participantView: {
  10. alignItems: 'stretch',
  11. flex: 1,
  12. justifyContent: 'center'
  13. }
  14. });