| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- import BaseTheme from '../../base/ui/components/BaseTheme.native';
-
- const SECONDARY_COLOR = BaseTheme.palette.border04;
-
- const preJoinText = {
- ...BaseTheme.typography.heading5,
- color: BaseTheme.palette.text01,
- textAlign: 'center'
- };
-
- 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[3]
- },
-
- toolboxContainerWide: {
- flexDirection: 'row',
- justifyContent: 'center',
- marginTop: BaseTheme.spacing[3]
- },
-
- 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'
- },
-
- preJoinTitle: {
- ...preJoinText
- },
-
- preJoinRoomName: {
- ...preJoinText
- }
- };
|