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

123456789101112131415161718192021222324252627
  1. // @flow
  2. import { ColorPalette } from '../../../base/styles';
  3. export const INDICATOR_COLOR = ColorPalette.lightGrey;
  4. export default {
  5. headerArrowBack: {
  6. marginLeft: 12
  7. },
  8. indicatorWrapper: {
  9. alignItems: 'center',
  10. backgroundColor: ColorPalette.white,
  11. height: '100%',
  12. justifyContent: 'center'
  13. },
  14. sharedDocContainer: {
  15. flex: 1
  16. },
  17. webView: {
  18. backgroundColor: 'rgb(242, 242, 242)'
  19. }
  20. };