mirror of
https://github.com/element-hq/element-web
synced 2024-11-22 17:25:50 +03:00
fix for the ... button not being aligned for group invite tiles
This commit is contained in:
parent
dedaf0f5a2
commit
c39c0e4834
2 changed files with 5 additions and 0 deletions
|
@ -191,3 +191,7 @@ limitations under the License.
|
|||
.mx_RoomTile.mx_RoomTile_transparent:focus {
|
||||
background-color: $roomtile-transparent-focused-color;
|
||||
}
|
||||
|
||||
.mx_GroupInviteTile .mx_RoomTile_name {
|
||||
flex: 1;
|
||||
}
|
||||
|
|
|
@ -150,6 +150,7 @@ export default React.createClass({
|
|||
const classes = classNames('mx_RoomTile mx_RoomTile_highlight', {
|
||||
'mx_RoomTile_menuDisplayed': this.state.menuDisplayed,
|
||||
'mx_RoomTile_selected': this.state.selected,
|
||||
'mx_GroupInviteTile': true,
|
||||
});
|
||||
|
||||
return (
|
||||
|
|
Loading…
Reference in a new issue