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