make group header as tall as top left menu/room header
This commit is contained in:
parent
3e7c3bfff8
commit
be0de104ff
2 changed files with 4 additions and 4 deletions
|
@ -25,7 +25,7 @@ limitations under the License.
|
|||
}
|
||||
|
||||
.mx_GroupView_header {
|
||||
min-height: 70px;
|
||||
min-height: 52px;
|
||||
align-items: center;
|
||||
display: flex;
|
||||
padding-bottom: 10px;
|
||||
|
@ -34,7 +34,7 @@ limitations under the License.
|
|||
.mx_GroupView_header_view {
|
||||
border-bottom: 1px solid $primary-hairline-color;
|
||||
padding-bottom: 0px;
|
||||
padding-left: 8px;
|
||||
padding-left: 19px;
|
||||
padding-right: 8px;
|
||||
}
|
||||
|
||||
|
|
|
@ -1178,7 +1178,7 @@ export default React.createClass({
|
|||
avatarImage = <GroupAvatar groupId={this.props.groupId}
|
||||
groupName={this.state.profileForm.name}
|
||||
groupAvatarUrl={this.state.profileForm.avatar_url}
|
||||
width={48} height={48} resizeMethod='crop'
|
||||
width={28} height={28} resizeMethod='crop'
|
||||
/>;
|
||||
}
|
||||
|
||||
|
@ -1228,7 +1228,7 @@ export default React.createClass({
|
|||
groupAvatarUrl={groupAvatarUrl}
|
||||
groupName={groupName}
|
||||
onClick={onGroupHeaderItemClick}
|
||||
width={48} height={48}
|
||||
width={28} height={28}
|
||||
/>;
|
||||
if (summary.profile && summary.profile.name) {
|
||||
nameNode = <div onClick={onGroupHeaderItemClick}>
|
||||
|
|
Loading…
Reference in a new issue