fix(ui): hover to display footer bar in non-maximized windows on desktop (#2343)

This commit is contained in:
Huang Xin
2025-10-28 12:30:41 +08:00
committed by GitHub
parent d01599a2b4
commit da041d1f38
@@ -179,7 +179,7 @@ const FooterBar: React.FC<FooterBarProps> = ({
<div
role='none'
className={clsx(
'absolute bottom-0 left-0 z-10 hidden w-full sm:flex sm:h-[52px]',
'absolute bottom-0 left-0 z-10 flex h-[52px] w-full',
viewSettings?.vertical && viewSettings?.scrolled && 'sm:!bottom-3 sm:!h-7',
)}
onMouseEnter={() => !appService?.isMobile && setHoveredBookKey(bookKey)}