Wrap dialog in div with styling.

master
Håvar Aambø Fosstveit 2019-06-13 13:37:39 +02:00
parent 4f3387b73c
commit 819bd64948
1 changed files with 5 additions and 1 deletions

View File

@ -250,7 +250,11 @@ class Room extends React.PureComponent
}
else if (!room.joined)
{
return (<JoinDialog />);
return (
<div className={classes.root}>
<JoinDialog />
</div>
);
}
else
{