fix mirror text on FF by reverting weird css hack.

this reverts some of d1368f4622
it's very unclear why the width of the preview was pushed out to 100%+1px (and the transform then flipped to 1.01)
but i see no ill effects on having reverted it.
This commit is contained in:
Matthew Hodgson 2022-08-07 02:43:59 +01:00
parent baebfdb0bb
commit 8aa66dddfd

View file

@ -9,12 +9,11 @@
} }
.preview video { .preview video {
width: calc(100% + 1px); width: 100%;
height: 100%; height: 100%;
object-fit: contain; object-fit: contain;
background-color: black; background-color: black;
/* transform scale doesn't perfectly match width, so make -1.01 border issues */ transform: scaleX(-1);
transform: scaleX(-1.01);
} }
.avatarContainer { .avatarContainer {