123456789101112131415161718 |
- // @flow
-
- import { ColorPalette } from '../../../base/styles';
-
- export default {
- displayNameBackdrop: {
- alignSelf: 'center',
- backgroundColor: ColorPalette.darkBackground,
- borderRadius: 4,
- paddingHorizontal: 16,
- paddingVertical: 4
- },
-
- displayNameText: {
- color: ColorPalette.white,
- fontSize: 14
- }
- };
|