Skip to content

Commit

Permalink
Fix misaligned timestamps for thread roots which are emotes (#9875)
Browse files Browse the repository at this point in the history
* Fix misaligned timestamps for thread roots which are emotes
* Use cross-browser variant instead of webkit-only variant for fill-available
  • Loading branch information
justjanne committed Jan 11, 2023
1 parent 1daa34b commit cce506b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion res/css/views/rooms/_EventTile.pcss
Expand Up @@ -970,6 +970,7 @@ $left-gutter: 64px;
font-size: $font-12px;
max-width: var(--MessageTimestamp-max-width);
position: initial;
margin-left: auto; /* to ensure it's end-aligned even if it's the only element of its parent */
}

&:hover {
Expand Down Expand Up @@ -1297,7 +1298,7 @@ $left-gutter: 64px;

.mx_EventTile_details {
display: flex;
width: -webkit-fill-available;
width: fill-available;
align-items: center;
justify-content: space-between;
gap: $spacing-8;
Expand Down

0 comments on commit cce506b

Please sign in to comment.