2017-02-16 21:17:05 +00:00
|
|
|
import {
|
|
|
|
ColorPalette,
|
|
|
|
createStyleSheet,
|
|
|
|
fixAndroidViewClipping
|
|
|
|
} from '../../base/styles';
|
2016-10-05 14:36:59 +00:00
|
|
|
|
|
|
|
/**
|
2017-06-10 22:50:42 +00:00
|
|
|
* The styles of the feature conference.
|
2016-10-05 14:36:59 +00:00
|
|
|
*/
|
2017-06-10 22:50:42 +00:00
|
|
|
export default createStyleSheet({
|
2016-10-05 14:36:59 +00:00
|
|
|
/**
|
2017-06-10 22:50:42 +00:00
|
|
|
* {@code Conference} style.
|
2016-10-05 14:36:59 +00:00
|
|
|
*/
|
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
|
|
|
});
|