theluyuan 38ba663466
Some checks failed
Close stale issues and PRs / stale (push) Has been cancelled
init
2025-09-02 14:49:16 +08:00

47 lines
1.1 KiB
TypeScript

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'
}
};