You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

styles.js 459B

1234567891011121314151617181920
  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. opacity: 0.90
  16. }
  17. });