Some checks failed
Close stale issues and PRs / stale (push) Has been cancelled
77 lines
1.8 KiB
TypeScript
77 lines
1.8 KiB
TypeScript
import BaseTheme from '../../../base/ui/components/BaseTheme.native';
|
|
|
|
|
|
/**
|
|
* The styles of the native components of the feature {@code breakout rooms}.
|
|
*/
|
|
export default {
|
|
|
|
button: {
|
|
marginBottom: BaseTheme.spacing[4],
|
|
marginHorizontal: BaseTheme.spacing[2]
|
|
},
|
|
|
|
collapsibleList: {
|
|
alignItems: 'center',
|
|
borderRadius: BaseTheme.shape.borderRadius,
|
|
display: 'flex',
|
|
flexDirection: 'row',
|
|
height: BaseTheme.spacing[7],
|
|
marginHorizontal: BaseTheme.spacing[2],
|
|
marginTop: BaseTheme.spacing[3]
|
|
},
|
|
|
|
arrowIcon: {
|
|
backgroundColor: BaseTheme.palette.ui03,
|
|
height: BaseTheme.spacing[5],
|
|
width: BaseTheme.spacing[5],
|
|
borderRadius: 6,
|
|
display: 'flex',
|
|
alignItems: 'center',
|
|
justifyContent: 'center'
|
|
},
|
|
|
|
roomName: {
|
|
fontSize: 15,
|
|
color: BaseTheme.palette.text01,
|
|
fontWeight: 'bold',
|
|
marginLeft: BaseTheme.spacing[2]
|
|
},
|
|
|
|
listTile: {
|
|
fontSize: 15,
|
|
color: BaseTheme.palette.text01,
|
|
fontWeight: 'bold',
|
|
marginLeft: BaseTheme.spacing[2]
|
|
},
|
|
|
|
autoAssignLabel: {
|
|
color: BaseTheme.palette.link01
|
|
},
|
|
|
|
autoAssignButton: {
|
|
alignSelf: 'center',
|
|
justifyContent: 'center',
|
|
marginTop: BaseTheme.spacing[3]
|
|
},
|
|
|
|
breakoutRoomsContainer: {
|
|
backgroundColor: BaseTheme.palette.ui01,
|
|
flex: 1,
|
|
flexDirection: 'column',
|
|
height: 'auto',
|
|
paddingHorizontal: BaseTheme.spacing[3]
|
|
},
|
|
|
|
inputContainer: {
|
|
marginLeft: BaseTheme.spacing[2],
|
|
marginRight: BaseTheme.spacing[2],
|
|
marginTop: BaseTheme.spacing[4]
|
|
},
|
|
|
|
centerInput: {
|
|
paddingRight: BaseTheme.spacing[3],
|
|
textAlign: 'center'
|
|
}
|
|
};
|