12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- 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'
- }
- };
|