From 359f9a97ad08e29d2ea3ee40744b55916af45a78 Mon Sep 17 00:00:00 2001 From: Varun Patil Date: Sun, 28 May 2023 00:12:31 -0700 Subject: [PATCH] timeline: restore subpixel rounding fix Signed-off-by: Varun Patil --- src/components/Timeline.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Timeline.vue b/src/components/Timeline.vue index 741a9252..3072f67c 100644 --- a/src/components/Timeline.vue +++ b/src/components/Timeline.vue @@ -1313,7 +1313,7 @@ export default defineComponent({ // Get rid of padding on img-outer (1px on mobile) // Also need to make sure we don't end up with a scrollbar -- see below margin-left: -1px; - width: calc(100% + 2px); + width: calc(100% + 3px); // 1px extra here for sub-pixel rounding } }