fix: FF mirrored self video lose rounding

This commit is contained in:
Valere
2026-07-31 12:20:32 +02:00
parent bfb5fb922f
commit e1bc4a096b

View File

@@ -33,6 +33,9 @@ Please see LICENSE in the repository root for full details.
.media.mirror video {
transform: scaleX(-1);
/* In FF if you add a transform: scale/translate/matrix filter on an element,
it'll ignore the parents' border-radius, so force back the radius to avoid UI glitch*/
border-radius: inherit;
}
.media[data-video-fit="cover"] video {