您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

styles.js 1.0KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. import {
  2. BoxModel,
  3. ColorPalette,
  4. createStyleSheet,
  5. fixAndroidViewClipping
  6. } from '../../base/styles';
  7. /**
  8. * The styles of the feature conference.
  9. */
  10. export default createStyleSheet({
  11. /**
  12. * {@code Conference} style.
  13. */
  14. conference: fixAndroidViewClipping({
  15. alignSelf: 'stretch',
  16. backgroundColor: ColorPalette.appBackground,
  17. flex: 1
  18. }),
  19. /**
  20. * The style of the {@link View} which expands over the whole
  21. * {@link Conference} area and splits it between the {@link Filmstrip} and
  22. * the {@link Toolbox}.
  23. */
  24. toolboxAndFilmstripContainer: {
  25. bottom: BoxModel.margin,
  26. flexDirection: 'column',
  27. justifyContent: 'flex-end',
  28. left: BoxModel.margin,
  29. position: 'absolute',
  30. right: BoxModel.margin,
  31. // Both on Android and iOS there is the status bar which may be visible.
  32. // On iPhone X there is the notch. In the two cases BoxModel.margin is
  33. // not enough.
  34. top: BoxModel.margin * 3
  35. }
  36. });