From fd6d4493c46df8fc638e81625101a02b4c6b0e9f Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Sun, 29 Dec 2019 00:23:40 -0800 Subject: [PATCH] Fixed: Details for episode history flashing on mobile devices --- frontend/src/Components/Tooltip/Tooltip.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/Components/Tooltip/Tooltip.js b/frontend/src/Components/Tooltip/Tooltip.js index 3f8b5ad06..db6b352e2 100644 --- a/frontend/src/Components/Tooltip/Tooltip.js +++ b/frontend/src/Components/Tooltip/Tooltip.js @@ -54,9 +54,9 @@ class Tooltip extends Component { } else if ((/^bottom/).test(data.placement)) { data.styles.maxHeight = windowHeight - bottom - 20; } else if ((/^right/).test(data.placement)) { - data.styles.maxWidth = windowWidth - right - 30; + data.styles.maxWidth = windowWidth - right - 35; } else { - data.styles.maxWidth = left - 30; + data.styles.maxWidth = left - 35; } return data;