2019-06-26 14:08:23 +00:00
|
|
|
// @flow
|
|
|
|
|
|
|
|
import { BoxModel, ColorPalette } from '../../styles';
|
2017-02-27 20:37:53 +00:00
|
|
|
|
|
|
|
/**
|
2017-06-10 22:50:42 +00:00
|
|
|
* The styles of the feature base/participants.
|
2017-02-27 20:37:53 +00:00
|
|
|
*/
|
2019-06-26 14:08:23 +00:00
|
|
|
export default {
|
2018-02-05 10:57:40 +00:00
|
|
|
/**
|
2019-06-26 14:08:23 +00:00
|
|
|
* Container for the avatar in the view.
|
2018-02-05 10:57:40 +00:00
|
|
|
*/
|
2019-06-26 14:08:23 +00:00
|
|
|
avatarContainer: {
|
|
|
|
alignItems: 'center',
|
|
|
|
justifyContent: 'center'
|
2018-02-05 10:57:40 +00:00
|
|
|
},
|
|
|
|
|
2017-12-12 15:30:23 +00:00
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
},
|
|
|
|
|
2017-02-27 20:37:53 +00:00
|
|
|
/**
|
2017-06-10 22:50:42 +00:00
|
|
|
* {@code ParticipantView} style.
|
2017-02-27 20:37:53 +00:00
|
|
|
*/
|
|
|
|
participantView: {
|
|
|
|
alignItems: 'stretch',
|
2017-04-07 15:26:51 +00:00
|
|
|
flex: 1,
|
|
|
|
justifyContent: 'center'
|
2017-02-27 20:37:53 +00:00
|
|
|
}
|
2019-06-26 14:08:23 +00:00
|
|
|
};
|