Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit c39c0e4

Browse files
committed
fix for the ... button not being aligned for group invite tiles
1 parent dedaf0f commit c39c0e4

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

res/css/views/rooms/_RoomTile.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,3 +191,7 @@ limitations under the License.
191191
.mx_RoomTile.mx_RoomTile_transparent:focus {
192192
background-color: $roomtile-transparent-focused-color;
193193
}
194+
195+
.mx_GroupInviteTile .mx_RoomTile_name {
196+
flex: 1;
197+
}

src/components/views/groups/GroupInviteTile.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,7 @@ export default React.createClass({
150150
const classes = classNames('mx_RoomTile mx_RoomTile_highlight', {
151151
'mx_RoomTile_menuDisplayed': this.state.menuDisplayed,
152152
'mx_RoomTile_selected': this.state.selected,
153+
'mx_GroupInviteTile': true,
153154
});
154155

155156
return (

0 commit comments

Comments
 (0)