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

123456789101112131415161718
  1. // @flow
  2. import { ColorPalette } from '../../../base/styles';
  3. export default {
  4. displayNameBackdrop: {
  5. alignSelf: 'center',
  6. backgroundColor: 'rgba(28, 32, 37, 0.6)',
  7. borderRadius: 4,
  8. paddingHorizontal: 16,
  9. paddingVertical: 4
  10. },
  11. displayNameText: {
  12. color: ColorPalette.white,
  13. fontSize: 14
  14. }
  15. };