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

styles.js 483B

123456789101112131415161718192021
  1. // @flow
  2. import { ColorPalette, createStyleSheet } from '../../../base/styles';
  3. export default createStyleSheet({
  4. participantNameContainer: {
  5. alignItems: 'center',
  6. borderBottomColor: ColorPalette.darkGrey,
  7. borderBottomWidth: 1,
  8. flexDirection: 'row',
  9. height: 48
  10. },
  11. participantNameLabel: {
  12. color: ColorPalette.lightGrey,
  13. flexShrink: 1,
  14. fontSize: 16,
  15. marginLeft: 16,
  16. opacity: 0.90
  17. }
  18. });