1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-02-25 07:12:40 +00:00

Fixed: Details for episode history flashing on mobile devices

This commit is contained in:
Mark McDowall 2019-12-29 00:23:40 -08:00 committed by Qstick
parent f2b8a08b11
commit 63bec4131b

View file

@ -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;