jiti-meet/react/features/authentication/components/styles.js

42 lines
932 B
JavaScript
Raw Normal View History

import { ColorSchemeRegistry, schemeColor } from '../../base/color-scheme';
import { BoxModel } from '../../base/styles';
2017-09-08 13:36:42 +00:00
/**
* The styles of the authentication feature.
*/
ColorSchemeRegistry.register('LoginDialog', {
2017-09-18 07:09:43 +00:00
/**
* The style of {@code Text} rendered by the {@code Dialog}s of the
* feature authentication.
2017-09-18 07:09:43 +00:00
*/
dialogText: {
margin: BoxModel.margin,
marginTop: BoxModel.margin * 2
2017-09-18 07:09:43 +00:00
},
/**
* The style used when an error message is rendered.
*/
errorMessage: {
color: schemeColor('errorText')
},
/**
* The style of {@code LoginDialog}.
*/
loginDialog: {
flex: 0,
flexDirection: 'column',
marginBottom: BoxModel.margin,
marginTop: BoxModel.margin
},
2017-09-18 07:09:43 +00:00
/**
* The style used then a progress message is rendered.
2017-09-18 07:09:43 +00:00
*/
progressMessage: {
color: schemeColor('text')
2017-09-08 13:36:42 +00:00
}
});