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 743B

1234567891011121314151617181920212223242526272829
  1. // @flow
  2. import {
  3. MD_FONT_SIZE,
  4. MD_ITEM_HEIGHT,
  5. MD_ITEM_MARGIN_PADDING
  6. } from '../../../base/dialog';
  7. import { ColorPalette, createStyleSheet } from '../../../base/styles';
  8. export default createStyleSheet({
  9. participantNameContainer: {
  10. alignItems: 'center',
  11. borderBottomColor: ColorPalette.lightGrey,
  12. borderBottomWidth: 1,
  13. borderTopLeftRadius: 16,
  14. borderTopRightRadius: 16,
  15. flexDirection: 'row',
  16. height: MD_ITEM_HEIGHT,
  17. paddingLeft: MD_ITEM_MARGIN_PADDING
  18. },
  19. participantNameLabel: {
  20. color: ColorPalette.lightGrey,
  21. flexShrink: 1,
  22. fontSize: MD_FONT_SIZE,
  23. marginLeft: MD_ITEM_MARGIN_PADDING,
  24. opacity: 0.90
  25. }
  26. });