react-transcript-editor
react-transcript-editor copied to clipboard
Progress bar bug on large screen
Describe the bug
The progress bar looks off on large screens (27-inch) - see screenshot
To Reproduce Steps to reproduce the behavior:
Load demo storybook app on a large screen, eg 27-inch
Expected behavior
For the progress bar to look the same on a larger screen.
Screenshots

Additional context
NA
is this what is causing the issue /packages/components/media-player/src/ProgressBar.module.scss#L3?
$slider-width-number: 1440;
is 1440 supposed to be a max screen width?
Also, weirdly maybe unrelated - I'm seeing a gap in progress bar when progressing further into the video.

Interesting, I wasn't able to reproduce that @emettely
I did noticed tho that if I change slider-width-number to be 2290 then the problem is fixed (?) at least on a 27in screen.
$slider-width-number: 2290;