| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 | import { BoxModel, ColorPalette, createStyleSheet } from '../../base/styles';
/**
 * The style common to {@code LoginDialog} and {@code WaitForOwnerDialog}.
 */
const dialog = {
    marginBottom: BoxModel.margin,
    marginTop: BoxModel.margin
};
/**
 * The style common to {@code Text} rendered by {@code LoginDialog} and
 * {@code WaitForOwnerDialog}.
 */
const text = {
    color: ColorPalette.white
};
/**
 * The styles of the authentication feature.
 */
export default createStyleSheet({
    /**
     * The style of {@code Text} rendered by the {@code Dialog}s of the
     * feature authentication.
     */
    dialogText: {
        ...text,
        margin: BoxModel.margin,
        marginTop: BoxModel.margin * 2
    },
    /**
     * The style of {@code LoginDialog}.
     */
    loginDialog: {
        ...dialog,
        flex: 0,
        flexDirection: 'column'
    },
    /**
     * The style of {@code WaitForOwnerDialog}.
     */
    waitForOwnerDialog: {
        ...dialog,
        ...text
    }
});
 |