Fixed: Series poster view on mobile devices

(cherry picked from commit c0b30a50281c38a103c2f800064d0ec964fae6e0)
This commit is contained in:
Mark McDowall 2024-01-20 10:36:16 -08:00 committed by servarr
parent c003fe16de
commit feed5838ae
1 changed files with 8 additions and 4 deletions

View File

@ -244,11 +244,15 @@ export default function MovieIndexPosters(props: MovieIndexPostersProps) {
if (isSmallScreen) {
const padding = bodyPaddingSmallScreen - 5;
const width = window.innerWidth - padding * 2;
const height = window.innerHeight;
setSize({
width: window.innerWidth - padding * 2,
height: window.innerHeight,
});
if (width !== size.width || height !== size.height) {
setSize({
width,
height,
});
}
return;
}