From e1100f975c8937e64b1f8afc09d56c9008ad6d3c Mon Sep 17 00:00:00 2001 From: Eric Rosenbaum <eric.rosenbaum@gmail.com> Date: Tue, 23 Jul 2019 14:48:22 -0400 Subject: [PATCH] Fix handle div position --- src/components/audio-trimmer/audio-trimmer.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/audio-trimmer/audio-trimmer.css b/src/components/audio-trimmer/audio-trimmer.css index e7b2fc24d..dd3b5e9a2 100644 --- a/src/components/audio-trimmer/audio-trimmer.css +++ b/src/components/audio-trimmer/audio-trimmer.css @@ -113,6 +113,7 @@ $hover-scale: 1.25; position: absolute; width: $trim-handle-width; height: $trim-handle-height; + right: 0; } .trimmer .trim-handle { @@ -123,7 +124,7 @@ $hover-scale: 1.25; position: absolute; width: $trim-handle-width; height: $trim-handle-height; - left: calc(-$trim-handle-width + $trim-handle-border * 1.5); + left: calc($trim-handle-border * 1.5); /* Make sure image dragging isn't triggered */ user-select: none; -- GitLab