Skip to content

Commit

Permalink
Refactor element style
Browse files Browse the repository at this point in the history
  • Loading branch information
FelonEkonom committed Mar 3, 2025
1 parent 0d257ee commit d71adac
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/membrane_webrtc_live/capture.ex
Original file line number Diff line number Diff line change
Expand Up @@ -137,11 +137,11 @@ defmodule Membrane.WebRTC.Live.Capture do
def render(%{capture: %__MODULE__{preview?: true}} = assigns) do
~H"""
<video id={@capture.id} phx-hook="Capture" class={"" <> @class} style="
-o-transform : scaleX(-1);
-moz-transform : scaleX(-1);
-webkit-transform : scaleX(-1);
-o-transform: scaleX(-1);
-moz-transform: scaleX(-1);
-webkit-transform: scaleX(-1);
-ms-transform: scaleX(-1);
transform : scaleX(-1);
transform: scaleX(-1);
"></video>
"""
end
Expand Down

0 comments on commit d71adac

Please sign in to comment.