Merge pull request #6160 from vector-im/luke/fix-room-list-drop-target-bg

Fix RoomDropTarget and emptySubListTip to have containers
This commit is contained in:
Matthew Hodgson 2018-02-23 16:36:14 +00:00 committed by GitHub
commit 93c2462089
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 26 additions and 15 deletions

View file

@ -23,9 +23,11 @@ module.exports = React.createClass({
render: function() {
return (
<div className="mx_RoomDropTarget">
<div className="mx_RoomDropTarget_label">
{ this.props.label }
<div className="mx_RoomDropTarget_container">
<div className="mx_RoomDropTarget">
<div className="mx_RoomDropTarget_label">
{ this.props.label }
</div>
</div>
</div>
);