Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Fix position of the space hierarchy spinner #6462

Merged
merged 2 commits into from
Jul 23, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions res/css/structures/_SpaceRoomView.scss
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,9 @@ $SpaceRoomViewInnerWidth: 428px;
}

.mx_SpaceRoomView_landing {
display: flex;
flex-direction: column;

> .mx_BaseAvatar_image,
> .mx_BaseAvatar > .mx_BaseAvatar_image {
border-radius: 12px;
Expand Down Expand Up @@ -340,6 +343,7 @@ $SpaceRoomViewInnerWidth: 428px;

.mx_SearchBox {
margin: 0 0 20px;
flex: 0;
}

.mx_SpaceFeedbackPrompt {
Expand All @@ -350,6 +354,11 @@ $SpaceRoomViewInnerWidth: 428px;
display: none;
}
}

.mx_SpaceRoomDirectory_list {
// we don't want this container to get forced into the flexbox layout
display: contents;
}
}

.mx_SpaceRoomView_privateScope {
Expand Down