2019-04-11 08:28:51 +00:00
|
|
|
// @flow
|
|
|
|
|
|
|
|
import { ColorPalette } from '../../../base/styles';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
displayNameBackdrop: {
|
|
|
|
alignSelf: 'center',
|
2021-03-10 13:06:56 +00:00
|
|
|
backgroundColor: ColorPalette.darkBackground,
|
2019-04-11 08:28:51 +00:00
|
|
|
borderRadius: 4,
|
|
|
|
paddingHorizontal: 16,
|
|
|
|
paddingVertical: 4
|
|
|
|
},
|
|
|
|
|
|
|
|
displayNameText: {
|
|
|
|
color: ColorPalette.white,
|
|
|
|
fontSize: 14
|
|
|
|
}
|
|
|
|
};
|