Files
jitsi-meet/react/features/base/participants/components/styles.js
Saúl Ibarra Corretgé 50fea44ce2 [RN] Use rounded avatars in the film strip
Also move (native) avatar style to film-strip styles, since  that's where it
applies. This is analogous to how the large-view avatar is styled.
2017-04-10 19:13:40 -05:00

16 lines
324 B
JavaScript

import { createStyleSheet } from '../../styles';
/**
* The style of the avatar and participant view UI (components).
*/
export const styles = createStyleSheet({
/**
* ParticipantView style.
*/
participantView: {
alignItems: 'stretch',
flex: 1,
justifyContent: 'center'
}
});