96 lines
2.1 KiB
JavaScript
96 lines
2.1 KiB
JavaScript
import BaseTheme from '../../base/ui/components/BaseTheme.native';
|
|
|
|
const SECONDARY_COLOR = BaseTheme.palette.border04;
|
|
|
|
|
|
export default {
|
|
prejoinButton: {
|
|
marginTop: BaseTheme.spacing[3]
|
|
},
|
|
|
|
buttonStylesBorderless: {
|
|
iconStyle: {
|
|
color: BaseTheme.palette.icon01,
|
|
fontSize: 24
|
|
},
|
|
style: {
|
|
flexDirection: 'row',
|
|
justifyContent: 'center',
|
|
marginHorizontal: BaseTheme.spacing[3],
|
|
height: 24,
|
|
width: 24
|
|
},
|
|
underlayColor: 'transparent'
|
|
},
|
|
|
|
contentWrapper: {
|
|
flex: 1
|
|
},
|
|
|
|
contentWrapperWide: {
|
|
flex: 1,
|
|
flexDirection: 'row'
|
|
},
|
|
|
|
largeVideoContainer: {
|
|
minHeight: '50%'
|
|
},
|
|
|
|
largeVideoContainerWide: {
|
|
height: '100%',
|
|
marginRight: 'auto',
|
|
position: 'absolute',
|
|
width: '50%'
|
|
},
|
|
|
|
contentContainer: {
|
|
alignSelf: 'center',
|
|
display: 'flex',
|
|
justifyContent: 'center',
|
|
minHeight: '50%',
|
|
paddingHorizontal: BaseTheme.spacing[3],
|
|
width: 400
|
|
},
|
|
|
|
contentContainerWide: {
|
|
alignItems: 'center',
|
|
height: '100%',
|
|
justifyContent: 'center',
|
|
left: '50%',
|
|
paddingHorizontal: BaseTheme.spacing[3],
|
|
position: 'absolute',
|
|
width: '50%'
|
|
},
|
|
|
|
toolboxContainer: {
|
|
alignSelf: 'center',
|
|
display: 'flex',
|
|
flexDirection: 'row',
|
|
justifyContent: 'center',
|
|
marginTop: BaseTheme.spacing[4]
|
|
},
|
|
|
|
toolboxContainerWide: {
|
|
flexDirection: 'row',
|
|
justifyContent: 'center',
|
|
marginTop: BaseTheme.spacing[4]
|
|
},
|
|
|
|
formWrapper: {
|
|
alignSelf: 'stretch',
|
|
justifyContent: 'center',
|
|
marginHorizontal: BaseTheme.spacing[3]
|
|
},
|
|
|
|
field: {
|
|
backgroundColor: BaseTheme.palette.field02,
|
|
borderColor: SECONDARY_COLOR,
|
|
borderRadius: BaseTheme.shape.borderRadius,
|
|
borderWidth: 2,
|
|
color: BaseTheme.palette.text06,
|
|
height: BaseTheme.spacing[7],
|
|
marginTop: BaseTheme.spacing[3],
|
|
textAlign: 'center'
|
|
}
|
|
};
|