2016-10-05 14:36:59 +00:00
|
|
|
import { ColorPalette, createStyleSheet } from '../../base/styles';
|
|
|
|
|
2018-02-05 10:57:40 +00:00
|
|
|
/**
|
|
|
|
* Size for the Avatar.
|
|
|
|
*/
|
|
|
|
export const AVATAR_SIZE = 200;
|
2016-10-05 14:36:59 +00:00
|
|
|
|
2018-02-05 10:57:40 +00:00
|
|
|
export default createStyleSheet({
|
2016-10-05 14:36:59 +00:00
|
|
|
/**
|
|
|
|
* Large video container style.
|
|
|
|
*/
|
|
|
|
largeVideo: {
|
|
|
|
alignItems: 'stretch',
|
|
|
|
backgroundColor: ColorPalette.appBackground,
|
|
|
|
bottom: 0,
|
|
|
|
flex: 1,
|
|
|
|
justifyContent: 'center',
|
|
|
|
left: 0,
|
|
|
|
position: 'absolute',
|
|
|
|
right: 0,
|
|
|
|
top: 0
|
|
|
|
}
|
|
|
|
});
|