Files
jitsi-meet/react/features/display-name/components/native/styles.js
Saúl Ibarra Corretgé 76e4929add rn,tile-view: render display name on top of participant view
Makes the tiles consistent as the participant view is equally sized and the
avatar is always centered in the tile.
2020-07-21 13:18:48 +02:00

19 lines
366 B
JavaScript

// @flow
import { ColorPalette } from '../../../base/styles';
export default {
displayNameBackdrop: {
alignSelf: 'center',
backgroundColor: 'rgba(28, 32, 37, 0.6)',
borderRadius: 4,
paddingHorizontal: 16,
paddingVertical: 4
},
displayNameText: {
color: ColorPalette.white,
fontSize: 14
}
};