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

1234567891011121314151617181920212223242526
  1. import BaseTheme from '../../../base/ui/components/BaseTheme.native';
  2. /**
  3. * The styles of the native components of the feature {@code participants}.
  4. */
  5. export default {
  6. participantsPane: {
  7. backgroundColor: BaseTheme.palette.ui01,
  8. padding: 16
  9. },
  10. closeButton: {
  11. alignItems: 'center',
  12. display: 'flex',
  13. height: 48,
  14. justifyContent: 'center',
  15. marginLeft: 'auto'
  16. },
  17. closeIcon: {
  18. display: 'flex',
  19. flex: 1,
  20. fontSize: 24,
  21. justifyContent: 'center'
  22. }
  23. };