Fix MessageAudio flipped with RTL text

This commit is contained in:
Jamie Kyle 2023-12-13 10:32:24 -08:00 committed by GitHub
parent dc03fc52c4
commit 577baa83d1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,6 +9,12 @@ $audio-attachment-button-margin-small: 4px;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
margin-top: 2px; margin-top: 2px;
/**
* Players for audio or video content should always be left-to-right.
* This overrides the default direction of the surrounding elements.
*/
/* stylelint-disable-next-line declaration-property-value-disallowed-list */
direction: ltr;
.PlaybackButton { .PlaybackButton {
@media (min-width: 0px) and (max-width: 799px) { @media (min-width: 0px) and (max-width: 799px) {