mirror of
https://github.com/streamyfin/streamyfin.git
synced 2026-06-23 22:30:30 +01:00
Merge pull request #267 from Alexk2309/hotfix/small-ui-changes
Changed trickplay debounce to 10ms and added padding for EpisodeList
This commit is contained in:
@@ -292,7 +292,7 @@ export const Controls: React.FC<Props> = ({
|
|||||||
const minutes = Math.floor((progressInSeconds % 3600) / 60);
|
const minutes = Math.floor((progressInSeconds % 3600) / 60);
|
||||||
const seconds = progressInSeconds % 60;
|
const seconds = progressInSeconds % 60;
|
||||||
setTime({ hours, minutes, seconds });
|
setTime({ hours, minutes, seconds });
|
||||||
}, 20), // 100ms debounce delay
|
}, 10),
|
||||||
[]
|
[]
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|||||||
@@ -203,7 +203,7 @@ export const EpisodeList: React.FC<Props> = ({ item, close }) => {
|
|||||||
style={{
|
style={{
|
||||||
justifyContent: "space-between",
|
justifyContent: "space-between",
|
||||||
}}
|
}}
|
||||||
className={`flex flex-row items-center space-x-2 z-10 py-4 pr-4`}
|
className={`flex flex-row items-center space-x-2 z-10 p-4`}
|
||||||
>
|
>
|
||||||
{seriesItem && (
|
{seriesItem && (
|
||||||
<SeasonDropdown
|
<SeasonDropdown
|
||||||
|
|||||||
Reference in New Issue
Block a user