fix(theme): fixed texture background in scrolled mode, closes #3913 (#3918)

This commit is contained in:
Huang Xin
2026-04-21 21:44:59 +08:00
committed by GitHub
parent a2244e28b8
commit 3f531d9046
2 changed files with 2 additions and 2 deletions
@@ -751,7 +751,7 @@ const FoliateViewer: React.FC<{
/>
<ParagraphControl bookKey={bookKey} viewRef={viewRef} gridInsets={gridInsets} />
{((!docLoaded.current && loading) || viewState?.loading) && (
<div className='bg-base-100/85 absolute left-0 top-0 z-10 flex h-full w-full items-center justify-center'>
<div className='absolute left-0 top-0 z-10 flex h-full w-full items-center justify-center'>
<Spinner loading={true} />
</div>
)}