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

Fix cutout misalignment on some decorated room avatars #7784

Merged
merged 2 commits into from
Feb 11, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
7 changes: 7 additions & 0 deletions res/css/views/dialogs/_SpotlightDialog.scss
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,13 @@ limitations under the License.

.mx_DecoratedRoomAvatar {
margin-right: 8px;
width: 20px;
height: 20px;

.mx_BaseAvatar {
width: inherit;
height: inherit;
}
}

.mx_NotificationBadge {
Expand Down
6 changes: 5 additions & 1 deletion res/css/views/rooms/_RecentlyViewedButton.scss
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,13 @@ limitations under the License.
background-color: $panel-actions;
}

.mx_BaseAvatar {
.mx_DecoratedRoomAvatar {
margin-right: 8px;
width: 24px;

.mx_BaseAvatar {
width: inherit;
}
}

.mx_RecentlyViewedButton_entry_label {
Expand Down