mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 03:36:07 +03:00
Fix reactions row pushing content on IRC layout
This commit is contained in:
parent
3556384d80
commit
3ce6fcc64b
2 changed files with 7 additions and 1 deletions
|
@ -116,6 +116,11 @@ $irc-line-height: $font-18px;
|
||||||
.mx_EditMessageComposer_buttons {
|
.mx_EditMessageComposer_buttons {
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.mx_ReactionsRow {
|
||||||
|
padding-left: 0;
|
||||||
|
padding-right: 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_EventTile_emote {
|
.mx_EventTile_emote {
|
||||||
|
|
|
@ -1160,8 +1160,9 @@ export default class EventTile extends React.Component<IProps, IState> {
|
||||||
/>
|
/>
|
||||||
{ keyRequestInfo }
|
{ keyRequestInfo }
|
||||||
{ actionBar }
|
{ actionBar }
|
||||||
|
{ this.props.layout === Layout.IRC && (reactionsRow) }
|
||||||
</div>
|
</div>
|
||||||
{ reactionsRow }
|
{ this.props.layout !== Layout.IRC && (reactionsRow) }
|
||||||
{ msgOption }
|
{ msgOption }
|
||||||
</>)
|
</>)
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue