20 lines
393 B
JavaScript
20 lines
393 B
JavaScript
import {
|
|
ColorPalette,
|
|
createStyleSheet,
|
|
fixAndroidViewClipping
|
|
} from '../../base/styles';
|
|
|
|
/**
|
|
* The style of the conference UI (component).
|
|
*/
|
|
export const styles = createStyleSheet({
|
|
/**
|
|
* Conference style.
|
|
*/
|
|
conference: fixAndroidViewClipping({
|
|
alignSelf: 'stretch',
|
|
backgroundColor: ColorPalette.appBackground,
|
|
flex: 1
|
|
})
|
|
});
|