jiti-meet/react/features/display-name/components/native/styles.js

19 lines
370 B
JavaScript
Raw Normal View History

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