Files
jitsi-meet/react/features/base/participants/components/styles.js
Saúl Ibarra Corretgé 5640524647 [RN] Show an indication when connectivity problems occur
The video will switch to the avatar and be tinted with gray. On the large view,
a text message indicating the user has connectivity issues will be shown.
2017-12-19 09:10:58 -06:00

38 lines
914 B
JavaScript

import { BoxModel, ColorPalette, createStyleSheet } from '../../styles';
/**
* The styles of the feature base/participants.
*/
export default createStyleSheet({
/**
* 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'
}
});