jiti-meet/react/features/conference/components/styles.js

36 lines
614 B
JavaScript
Raw Normal View History

2017-02-16 21:17:05 +00:00
import {
ColorPalette,
createStyleSheet,
fixAndroidViewClipping
} from '../../base/styles';
/**
* The style of the conference UI (component).
*/
export const styles = createStyleSheet({
/**
* Avatar style.
*/
avatar: {
flex: 1,
width: '100%'
},
/**
* Conference style.
*/
2017-02-16 21:17:05 +00:00
conference: fixAndroidViewClipping({
alignSelf: 'stretch',
2016-11-08 22:09:07 +00:00
backgroundColor: ColorPalette.appBackground,
flex: 1
2017-02-16 21:17:05 +00:00
}),
/**
* ParticipantView style
*/
participantView: {
alignItems: 'stretch',
flex: 1
}
});