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

Fix the width bounce of the clock on the AudioPlayer #8320

Merged
merged 5 commits into from
May 11, 2022
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
6 changes: 3 additions & 3 deletions res/css/views/audio_messages/_AudioPlayer.scss
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ limitations under the License.
}

.mx_Clock {
width: $font-42px; // we're not using a monospace font, so fake it
t3chguy marked this conversation as resolved.
Show resolved Hide resolved
min-width: $font-42px; // for flexbox
padding-left: 4px; // isolate from seek bar
text-align: right;
padding-left: $spacing-4; // isolate from seek bar
text-align: justify;
white-space: nowrap;
}
}
}