| 12345678910111213141516171819 | 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
    })
});
 |