2022-11-25 13:59:45 +02:00
|
|
|
import BaseTheme from '../../../base/ui/components/BaseTheme.native';
|
2022-06-16 12:49:07 +03:00
|
|
|
|
|
|
|
|
|
2022-11-25 13:59:45 +02:00
|
|
|
export const preJoinStyles = {
|
2022-11-22 21:50:16 +02:00
|
|
|
|
2022-10-12 15:43:11 +03:00
|
|
|
joinButton: {
|
2022-11-22 18:13:36 +02:00
|
|
|
marginTop: BaseTheme.spacing[3],
|
|
|
|
|
width: 352
|
2022-11-08 19:14:29 +02:00
|
|
|
},
|
|
|
|
|
|
2022-06-16 12:49:07 +03:00
|
|
|
buttonStylesBorderless: {
|
|
|
|
|
iconStyle: {
|
|
|
|
|
color: BaseTheme.palette.icon01,
|
|
|
|
|
fontSize: 24
|
|
|
|
|
},
|
|
|
|
|
style: {
|
|
|
|
|
flexDirection: 'row',
|
|
|
|
|
justifyContent: 'center',
|
2022-10-12 15:43:11 +03:00
|
|
|
margin: BaseTheme.spacing[3],
|
2022-06-16 12:49:07 +03:00
|
|
|
height: 24,
|
|
|
|
|
width: 24
|
2022-06-21 17:16:38 +03:00
|
|
|
},
|
|
|
|
|
underlayColor: 'transparent'
|
2022-06-16 12:49:07 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
contentWrapper: {
|
|
|
|
|
flex: 1
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
contentWrapperWide: {
|
|
|
|
|
flex: 1,
|
|
|
|
|
flexDirection: 'row'
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
largeVideoContainer: {
|
2022-11-08 19:14:29 +02:00
|
|
|
height: '60%'
|
2022-06-16 12:49:07 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
largeVideoContainerWide: {
|
|
|
|
|
height: '100%',
|
|
|
|
|
marginRight: 'auto',
|
|
|
|
|
position: 'absolute',
|
2022-11-22 18:13:36 +02:00
|
|
|
width: '50%'
|
2022-06-16 12:49:07 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
contentContainer: {
|
2022-11-22 18:13:36 +02:00
|
|
|
alignItems: 'center',
|
2022-11-08 19:14:29 +02:00
|
|
|
backgroundColor: BaseTheme.palette.uiBackground,
|
|
|
|
|
bottom: 0,
|
2022-06-16 12:49:07 +03:00
|
|
|
display: 'flex',
|
2023-03-20 16:28:23 +02:00
|
|
|
height: 280,
|
2022-06-16 12:49:07 +03:00
|
|
|
justifyContent: 'center',
|
2022-11-08 19:14:29 +02:00
|
|
|
position: 'absolute',
|
2022-11-22 18:13:36 +02:00
|
|
|
width: '100%',
|
2022-11-08 19:14:29 +02:00
|
|
|
zIndex: 1
|
2022-06-16 12:49:07 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
contentContainerWide: {
|
2022-11-22 18:13:36 +02:00
|
|
|
alignItems: 'center',
|
2022-06-16 12:49:07 +03:00
|
|
|
height: '100%',
|
|
|
|
|
justifyContent: 'center',
|
2022-11-22 18:13:36 +02:00
|
|
|
left: '50%',
|
2022-10-12 15:43:11 +03:00
|
|
|
padding: BaseTheme.spacing[3],
|
2022-06-16 12:49:07 +03:00
|
|
|
position: 'absolute',
|
2022-11-22 18:13:36 +02:00
|
|
|
width: '50%'
|
2022-06-16 12:49:07 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
toolboxContainer: {
|
2022-11-22 18:13:36 +02:00
|
|
|
alignItems: 'center',
|
2022-11-08 19:14:29 +02:00
|
|
|
backgroundColor: BaseTheme.palette.ui01,
|
|
|
|
|
borderRadius: BaseTheme.shape.borderRadius,
|
2022-06-16 12:49:07 +03:00
|
|
|
display: 'flex',
|
|
|
|
|
flexDirection: 'row',
|
2022-11-08 19:14:29 +02:00
|
|
|
height: 60,
|
|
|
|
|
justifyContent: 'space-between',
|
2022-11-17 18:01:19 +02:00
|
|
|
marginBottom: BaseTheme.spacing[3],
|
2022-11-08 19:14:29 +02:00
|
|
|
paddingHorizontal: BaseTheme.spacing[2],
|
|
|
|
|
width: 148
|
2022-06-16 12:49:07 +03:00
|
|
|
},
|
|
|
|
|
|
2022-11-08 17:46:46 +02:00
|
|
|
customInput: {
|
2022-11-22 18:13:36 +02:00
|
|
|
textAlign: 'center',
|
|
|
|
|
width: 352
|
2022-11-08 17:46:46 +02:00
|
|
|
},
|
|
|
|
|
|
2022-10-12 15:43:11 +03:00
|
|
|
preJoinRoomName: {
|
|
|
|
|
...BaseTheme.typography.heading5,
|
|
|
|
|
color: BaseTheme.palette.text01,
|
|
|
|
|
textAlign: 'center'
|
2022-08-24 12:43:28 +03:00
|
|
|
},
|
|
|
|
|
|
2022-10-12 15:43:11 +03:00
|
|
|
displayRoomNameBackdrop: {
|
|
|
|
|
alignSelf: 'center',
|
2022-11-08 19:14:29 +02:00
|
|
|
backgroundColor: BaseTheme.palette.uiBackground,
|
|
|
|
|
borderRadius: BaseTheme.shape.borderRadius,
|
|
|
|
|
marginTop: BaseTheme.spacing[3],
|
|
|
|
|
opacity: 0.7,
|
2022-10-12 15:43:11 +03:00
|
|
|
paddingHorizontal: BaseTheme.spacing[3],
|
|
|
|
|
paddingVertical: BaseTheme.spacing[1],
|
2022-11-08 19:14:29 +02:00
|
|
|
position: 'absolute',
|
|
|
|
|
width: 243,
|
|
|
|
|
zIndex: 1
|
2022-06-16 12:49:07 +03:00
|
|
|
}
|
|
|
|
|
};
|