Skip to content
This repository was archived by the owner on Feb 11, 2026. It is now read-only.

Commit 92c5078

Browse files
committed
fix(spaces): room list joined marker not aligned
The marker indicating if a user had joined a room was displayed after the room name. This meant markers were never aligned with each another.
1 parent ddc5354 commit 92c5078

1 file changed

Lines changed: 11 additions & 3 deletions

File tree

res/css/structures/_SpaceHierarchy.pcss

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,10 @@ Please see LICENSE files in the repository root for full details.
159159
display: grid;
160160
grid-template-columns: 20px auto;
161161
gap: 6px 8px;
162-
align-items: center;
162+
163+
/* elecord, aligned room list */
164+
align-items: start;
165+
163166
flex: 1; /* wrap action buttons */
164167

165168
.mx_SpaceHierarchy_roomTile_avatar {
@@ -173,7 +176,9 @@ Please see LICENSE files in the repository root for full details.
173176

174177
.mx_InfoTooltip,
175178
.mx_SpaceHierarchy_roomTile_joined {
176-
margin-left: 12px;
179+
/* elecord, aligned room list */
180+
/* margin-left: 12px; */
181+
177182
color: $tertiary-content;
178183
font-size: $font-12px;
179184
line-height: $font-15px;
@@ -196,7 +201,10 @@ Please see LICENSE files in the repository root for full details.
196201
}
197202

198203
.mx_SpaceHierarchy_roomTile_joined {
199-
display: inline;
204+
/* elecord, aligned room list */
205+
display: block;
206+
margin-top: 3px;
207+
200208
position: relative;
201209
padding-left: 16px;
202210

0 commit comments

Comments
 (0)