Wrap dialog in div with styling.

This commit is contained in:
Håvar Aambø Fosstveit
2019-06-13 13:37:39 +02:00
parent 4f3387b73c
commit 819bd64948
+5 -1
View File
@@ -250,7 +250,11 @@ class Room extends React.PureComponent
} }
else if (!room.joined) else if (!room.joined)
{ {
return (<JoinDialog />); return (
<div className={classes.root}>
<JoinDialog />
</div>
);
} }
else else
{ {