mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-18 02:07:47 +00:00
20 lines
386 B
JavaScript
20 lines
386 B
JavaScript
|
|
// @flow
|
||
|
|
|
||
|
|
import { ColorPalette } from '../../../base/styles';
|
||
|
|
|
||
|
|
export default {
|
||
|
|
displayNameBackdrop: {
|
||
|
|
alignSelf: 'center',
|
||
|
|
backgroundColor: 'rgba(28, 32, 37, 0.6)',
|
||
|
|
borderRadius: 4,
|
||
|
|
margin: 16,
|
||
|
|
paddingHorizontal: 16,
|
||
|
|
paddingVertical: 4
|
||
|
|
},
|
||
|
|
|
||
|
|
displayNameText: {
|
||
|
|
color: ColorPalette.white,
|
||
|
|
fontSize: 14
|
||
|
|
}
|
||
|
|
};
|