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

Fix location sharing overflow in pinned message list #12951

Merged
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
4 changes: 3 additions & 1 deletion res/css/views/rooms/_PinnedEventTile.pcss
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ limitations under the License.
display: flex;
flex-direction: column;
gap: var(--cpd-space-1x);
width: 100%;
/* Remove avatar width and space between the avatar and the wrapper */
/* We need it to make the location fit */
width: calc(100% - var(--cpd-space-4x) - 32px);

.mx_PinnedEventTile_top {
display: flex;
Expand Down
Loading