jiti-meet/react/features/prejoin/components/styles.js

113 lines
2.5 KiB
JavaScript
Raw Normal View History

import BaseTheme from '../../base/ui/components/BaseTheme.native';
export default {
joinButton: {
marginVertical: BaseTheme.spacing[3]
},
buttonStylesBorderless: {
iconStyle: {
color: BaseTheme.palette.icon01,
fontSize: 24
},
style: {
flexDirection: 'row',
justifyContent: 'center',
margin: BaseTheme.spacing[3],
height: 24,
width: 24
},
underlayColor: 'transparent'
},
contentWrapper: {
flex: 1
},
contentWrapperWide: {
flex: 1,
flexDirection: 'row'
},
largeVideoContainer: {
height: '60%'
},
largeVideoContainerWide: {
height: '100%',
marginRight: 'auto',
position: 'absolute',
width: '60%'
},
contentContainer: {
alignSelf: 'center',
backgroundColor: BaseTheme.palette.uiBackground,
bottom: 0,
display: 'flex',
height: 284,
justifyContent: 'center',
position: 'absolute',
width: 390,
zIndex: 1
},
contentContainerWide: {
alignSelf: 'center',
height: '100%',
justifyContent: 'center',
left: '60%',
padding: BaseTheme.spacing[3],
position: 'absolute',
width: '40%'
},
toolboxContainer: {
alignSelf: 'center',
backgroundColor: BaseTheme.palette.ui01,
borderRadius: BaseTheme.shape.borderRadius,
display: 'flex',
flexDirection: 'row',
height: 60,
justifyContent: 'space-between',
2022-11-17 16:01:19 +00:00
marginBottom: BaseTheme.spacing[3],
paddingHorizontal: BaseTheme.spacing[2],
width: 148
},
toolboxContainerWide: {
flexDirection: 'row',
justifyContent: 'center'
},
formWrapper: {
alignSelf: 'stretch',
justifyContent: 'center',
marginHorizontal: BaseTheme.spacing[3]
},
customInput: {
textAlign: 'center'
},
preJoinRoomName: {
...BaseTheme.typography.heading5,
color: BaseTheme.palette.text01,
textAlign: 'center'
},
displayRoomNameBackdrop: {
alignSelf: 'center',
backgroundColor: BaseTheme.palette.uiBackground,
borderRadius: BaseTheme.shape.borderRadius,
marginTop: BaseTheme.spacing[3],
opacity: 0.7,
paddingHorizontal: BaseTheme.spacing[3],
paddingVertical: BaseTheme.spacing[1],
position: 'absolute',
width: 243,
zIndex: 1
}
};