2017-02-16 21:17:05 +00:00
|
|
|
import {
|
|
|
|
ColorPalette,
|
|
|
|
createStyleSheet,
|
|
|
|
fixAndroidViewClipping
|
|
|
|
} from '../../base/styles';
|
2016-10-05 14:36:59 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The style of the conference UI (component).
|
|
|
|
*/
|
|
|
|
export const styles = createStyleSheet({
|
|
|
|
/**
|
|
|
|
* Conference style.
|
|
|
|
*/
|
2017-02-16 21:17:05 +00:00
|
|
|
conference: fixAndroidViewClipping({
|
2016-10-05 14:36:59 +00:00
|
|
|
alignSelf: 'stretch',
|
2016-11-08 22:09:07 +00:00
|
|
|
backgroundColor: ColorPalette.appBackground,
|
2016-10-05 14:36:59 +00:00
|
|
|
flex: 1
|
2017-02-27 20:37:53 +00:00
|
|
|
})
|
2016-10-05 14:36:59 +00:00
|
|
|
});
|