12345678910111213141516171819 |
- import {
- ColorPalette,
- createStyleSheet,
- fixAndroidViewClipping
- } from '../../base/styles';
-
- /**
- * The styles of the feature conference.
- */
- export default createStyleSheet({
- /**
- * {@code Conference} style.
- */
- conference: fixAndroidViewClipping({
- alignSelf: 'stretch',
- backgroundColor: ColorPalette.appBackground,
- flex: 1
- })
- });
|