jiti-meet/react/features/invite/components/callee-info/styles.native.js

50 lines
1.1 KiB
JavaScript
Raw Normal View History

import { StyleSheet } from 'react-native';
2018-06-26 22:56:22 +00:00
import { ColorPalette, createStyleSheet } from '../../../base/styles';
2017-06-10 22:52:36 +00:00
export default createStyleSheet({
// XXX The names bellow were preserved for the purposes of compatibility
// with the existing CSS class names on Web.
/**
* The style of {@code CalleeInfo}.
2017-06-10 22:52:36 +00:00
*/
ringing: {
...StyleSheet.absoluteFillObject,
2017-06-10 22:52:36 +00:00
alignItems: 'center',
backgroundColor: ColorPalette.black,
flex: 0,
flexDirection: 'column',
justifyContent: 'center',
opacity: 0.8
2017-06-10 22:52:36 +00:00
},
'ringing__avatar': {
borderRadius: 50,
flex: 0,
height: 100,
width: 100
},
'ringing__caller-info': {
alignItems: 'center',
flex: 0,
flexDirection: 'row',
justifyContent: 'center'
},
'ringing__content': {
alignItems: 'center',
flex: 0,
flexDirection: 'column',
justifyContent: 'center'
},
/**
* The style of {@code Text} within {@code CalleeInfo}.
2017-06-10 22:52:36 +00:00
*/
'ringing__text': {
color: ColorPalette.white
}
});