| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 | 
							- // @flow
 - 
 - import { BoxModel, ColorPalette } from '../../styles';
 - 
 - /**
 -  * The styles of the feature base/participants.
 -  */
 - export default {
 -     /**
 -      * Container for the avatar in the view.
 -      */
 -     avatarContainer: {
 -         alignItems: 'center',
 -         justifyContent: 'center'
 -     },
 - 
 -     /**
 -      * Style for the text rendered when there is a connectivity problem.
 -      */
 -     connectionInfoText: {
 -         color: ColorPalette.white,
 -         fontSize: 12,
 -         marginVertical: BoxModel.margin,
 -         marginHorizontal: BoxModel.margin,
 -         textAlign: 'center'
 -     },
 - 
 -     /**
 -      * Style for the container of the text rendered when there is a
 -      * connectivity problem.
 -      */
 -     connectionInfoContainer: {
 -         alignSelf: 'center',
 -         backgroundColor: ColorPalette.darkGrey,
 -         borderRadius: 20,
 -         marginTop: BoxModel.margin
 -     },
 - 
 -     /**
 -      * {@code ParticipantView} style.
 -      */
 -     participantView: {
 -         alignItems: 'stretch',
 -         flex: 1,
 -         justifyContent: 'center'
 -     }
 - };
 
 
  |