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

1234567891011121314151617181920212223242526
  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.darkGrey,
  12. borderBottomWidth: 1,
  13. flexDirection: 'row',
  14. height: MD_ITEM_HEIGHT
  15. },
  16. participantNameLabel: {
  17. color: ColorPalette.lightGrey,
  18. flexShrink: 1,
  19. fontSize: MD_FONT_SIZE,
  20. marginLeft: MD_ITEM_MARGIN_PADDING,
  21. opacity: 0.90
  22. }
  23. });