123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- import BaseTheme from '../../../base/ui/components/BaseTheme.native';
-
- export const preJoinStyles = {
-
- joinButton: {
- marginTop: BaseTheme.spacing[3],
- width: 352
- },
-
- 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,
- flexDirection: 'row'
- },
-
- contentWrapperWide: {
- flex: 1,
- flexDirection: 'row'
- },
-
- largeVideoContainer: {
- height: '60%'
- },
-
- largeVideoContainerWide: {
- height: '100%',
- marginRight: 'auto',
- position: 'absolute',
- width: '50%'
- },
-
- contentContainer: {
- alignItems: 'center',
- backgroundColor: BaseTheme.palette.uiBackground,
- bottom: 0,
- display: 'flex',
- height: 280,
- justifyContent: 'center',
- position: 'absolute',
- width: '100%',
- zIndex: 1
- },
-
- contentContainerWide: {
- alignItems: 'center',
- height: '100%',
- justifyContent: 'center',
- left: '50%',
- padding: BaseTheme.spacing[3],
- position: 'absolute',
- width: '50%'
- },
-
- toolboxContainer: {
- alignItems: 'center',
- backgroundColor: BaseTheme.palette.ui01,
- borderRadius: BaseTheme.shape.borderRadius,
- display: 'flex',
- flexDirection: 'row',
- height: 60,
- justifyContent: 'space-between',
- marginBottom: BaseTheme.spacing[3],
- paddingHorizontal: BaseTheme.spacing[2],
- width: 148
- },
-
- customInput: {
- textAlign: 'center',
- width: 352
- },
-
- errorContainer: {
- backgroundColor: BaseTheme.palette.actionDanger,
- borderBottomRightRadius: BaseTheme.shape.borderRadius,
- borderBottomLeftRadius: BaseTheme.shape.borderRadius,
- boxSizing: 'border-box',
- marginTop: -BaseTheme.spacing[2],
- overflow: 'visible',
- wordBreak: 'normal',
- width: 352
- },
-
- error: {
- padding: BaseTheme.spacing[1],
- color: BaseTheme.palette.text01,
- 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',
- maxWidth: 243,
- zIndex: 1
- },
- unsafeRoomWarningContainer: {
- height: '100%',
- width: '100%',
- backgroundColor: BaseTheme.palette.ui01,
- display: 'flex',
- alignItems: 'center',
- justifyContent: 'center',
- color: 'white'
- },
- unsafeRoomContentContainer: {
- justifySelf: 'center',
- height: '100%',
- display: 'flex',
- alignItems: 'center',
- justifyContent: 'center',
- paddingHorizontal: BaseTheme.spacing[4]
- },
-
- unsafeRoomContentContainerWide: {
- alignItems: 'center',
- justifySelf: 'center',
- height: '100%',
- display: 'flex',
- justifyContent: 'center',
- marginLeft: BaseTheme.spacing[7],
- paddingHorizontal: BaseTheme.spacing[6]
- },
-
- warningText: {
- ...BaseTheme.typography.bodyLongRegularLarge,
- color: BaseTheme.palette.text01,
- textAlign: 'center',
- marginBottom: BaseTheme.spacing[4]
- },
- warningIconWrapper: {
- backgroundColor: BaseTheme.palette.warning01,
- borderRadius: BaseTheme.shape.circleRadius,
- padding: BaseTheme.spacing[4],
- marginBottom: BaseTheme.spacing[4],
- zIndex: 0
-
- },
- warningIcon: {
- color: BaseTheme.palette.ui01,
- fontSize: 40
- }
- };
|