diff --git a/res/css/views/rooms/_RoomPreviewCard.scss b/res/css/views/rooms/_RoomPreviewCard.scss index 782eb29248..3ee37e585d 100644 --- a/res/css/views/rooms/_RoomPreviewCard.scss +++ b/res/css/views/rooms/_RoomPreviewCard.scss @@ -74,6 +74,7 @@ limitations under the License. // XXX Remove this when video rooms leave beta .mx_BetaCard_betaPill { + margin-inline-start: auto; align-self: start; } } diff --git a/src/components/views/rooms/RoomPreviewCard.tsx b/src/components/views/rooms/RoomPreviewCard.tsx index 132ba6720e..b2d9710a7c 100644 --- a/src/components/views/rooms/RoomPreviewCard.tsx +++ b/src/components/views/rooms/RoomPreviewCard.tsx @@ -102,7 +102,10 @@ const RoomPreviewCard: FC = ({ room, onJoinButtonClicked, onRejectButton { inviteSender } : null } - + { room.isElementVideoRoom() + ? + : null + } ; }