From 66852229bd410c386c71fd211344ea30b4b29fb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Ml=C3=A1dek?= Date: Wed, 20 Jan 2021 23:07:02 +0100 Subject: [PATCH] fix VideoScroll rotate property --- app/src/components/VideoScroll.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/components/VideoScroll.vue b/app/src/components/VideoScroll.vue index 4f0f996..993e705 100644 --- a/app/src/components/VideoScroll.vue +++ b/app/src/components/VideoScroll.vue @@ -7,7 +7,7 @@ left: `${Math.round(definition.left)}px`, width: isHorizontal ? `${Math.round(definition.width)}px` : 'auto', height: isVertical ? `${Math.round(definition.height)}px` : 'auto', - rotate: `${definition.angle}deg` + transform: `rotate(${definition.angle}deg)` }" /> @@ -19,7 +19,7 @@ left: `${Math.round(file.left)}px`, width: `${Math.round(definition.width)}px`, height: `${Math.round(definition.height)}px`, - rotate: `${definition.angle}deg` + transform: `rotate(${definition.angle}deg)` }" />