You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is the minor-est of minor nitpicks, but I noticed this morning that the width of a workout detail page varies if there is GPS data or not, which results in the arrow buttons to navigate back and forth between workouts jumping around (making it annoying to click through more than one activity)
Hopefully this makes the issue clear:
As you can see, the previous/next arrows on these two pages are not aligned.
So far as I can tell, this is due to the added width of the scrollbar for a workout with GPS data, compared to one without. When there's no GPS data, the .container div (the parent of .workout-container) has a margin of 390 px:
But when there is GPS data, that same div has margins of 382.5 px:
If I add a local CSS rule of
body {
overflow-y: scroll;
}
The buttons stop jumping around, but I'm not sure that's the best solution.
The text was updated successfully, but these errors were encountered:
This is the minor-est of minor nitpicks, but I noticed this morning that the width of a workout detail page varies if there is GPS data or not, which results in the arrow buttons to navigate back and forth between workouts jumping around (making it annoying to click through more than one activity)
Hopefully this makes the issue clear:
As you can see, the previous/next arrows on these two pages are not aligned.
So far as I can tell, this is due to the added width of the scrollbar for a workout with GPS data, compared to one without. When there's no GPS data, the
.container
div (the parent of.workout-container
) has a margin of 390 px:But when there is GPS data, that same div has margins of 382.5 px:
If I add a local CSS rule of
The buttons stop jumping around, but I'm not sure that's the best solution.
The text was updated successfully, but these errors were encountered: