Fix audio waveform displaying RTL

This commit is contained in:
Jamie Kyle 2023-11-27 15:05:50 -08:00 committed by GitHub
parent 55dca745c7
commit 135529d350
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,6 +2,13 @@
// SPDX-License-Identifier: AGPL-3.0-only
.Waveform {
/**
* Progress indicators for audio or video content should always be left-to-right.
* This overrides the default direction of the page.
*/
/* stylelint-disable-next-line declaration-property-value-disallowed-list */
direction: ltr;
flex-shrink: 0;
display: flex;