Prevent invisible pages (#614)
Sometimes after changing the current page, the next page had 0 width and thus was invisible.
This commit is contained in:
@@ -61,7 +61,13 @@ export const Page = forwardRef((props: IProps, ref: any) => {
|
|||||||
return (
|
return (
|
||||||
<Box
|
<Box
|
||||||
ref={ref}
|
ref={ref}
|
||||||
sx={{ display: 'flex', justifyContent: 'center', minWidth: isDoublePageReader ? '100%' : undefined }}
|
sx={{
|
||||||
|
display: 'flex',
|
||||||
|
flexDirection: 'column',
|
||||||
|
alignItems: 'center',
|
||||||
|
justifyContent: 'center',
|
||||||
|
minWidth: isDoublePageReader ? '100%' : undefined,
|
||||||
|
}}
|
||||||
>
|
>
|
||||||
<SpinnerImage
|
<SpinnerImage
|
||||||
src={src}
|
src={src}
|
||||||
|
|||||||
Reference in New Issue
Block a user