You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-07-28 15:22:05 +03:00
Fix encryption badge layout
This commit is contained in:
@ -92,7 +92,7 @@ $right-padding: 5px;
|
|||||||
|
|
||||||
.mx_EventTile_line .mx_EventTile_content,
|
.mx_EventTile_line .mx_EventTile_content,
|
||||||
.mx_EventTile_line .mx_EventTile_e2eIcon,
|
.mx_EventTile_line .mx_EventTile_e2eIcon,
|
||||||
.mx_eventTile_line > div {
|
.mx_EventTile_line .mx_ReplyThread_wrapper_empty {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -180,7 +180,7 @@ export default class ReplyThread extends React.Component {
|
|||||||
|
|
||||||
static makeThread(parentEv, onHeightChanged, permalinkCreator, ref, useIRCLayout) {
|
static makeThread(parentEv, onHeightChanged, permalinkCreator, ref, useIRCLayout) {
|
||||||
if (!ReplyThread.getParentEventId(parentEv)) {
|
if (!ReplyThread.getParentEventId(parentEv)) {
|
||||||
return <div />;
|
return <div className="mx_ReplyThread_wrapper_empty" />;
|
||||||
}
|
}
|
||||||
return <ReplyThread parentEv={parentEv} onHeightChanged={onHeightChanged}
|
return <ReplyThread parentEv={parentEv} onHeightChanged={onHeightChanged}
|
||||||
ref={ref} permalinkCreator={permalinkCreator} useIRCLayout={useIRCLayout} />;
|
ref={ref} permalinkCreator={permalinkCreator} useIRCLayout={useIRCLayout} />;
|
||||||
|
Reference in New Issue
Block a user