Expanding dialog box for signin.

This commit is contained in:
David Jay
2016-11-21 16:19:27 -05:00
parent d12c58c2de
commit 56205aee74
3 changed files with 6 additions and 2 deletions
@@ -84,8 +84,8 @@ class CommentStream extends Component {
const rootItemId = this.props.items.assets && Object.keys(this.props.items.assets)[0];
const rootItem = this.props.items.assets && this.props.items.assets[rootItemId];
const {loggedIn, user} = this.props.auth;
return <div>
const {loggedIn, user, showSignInDialog} = this.props.auth;
return <div className={showSignInDialog ? 'expandForSignin' : ''}>
{
rootItem
? <div>
@@ -7,6 +7,10 @@ body {
padding: 0px 0px 50px 0px;
}
.expandForSignin {
min-height: 550px;
}
button {
padding: 5px 10px;
margin: 5px;
View File