fix: can scroll on entry content

- Modified the AIEntryLayout component to include a relative positioning class for better layout management.
- This change enhances the overall rendering and interaction experience within the entry column.

Signed-off-by: Innei <tukon479@gmail.com>
This commit is contained in:
Innei 2025-09-08 20:53:02 +08:00
parent d7a7b0c8c3
commit b05f49fe84
No known key found for this signature in database
GPG Key ID: 0F62D33977F021F7
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ const AIEntryLayoutImpl = () => {
animate={{ translateY: 0, opacity: 1, scale: 1 }}
exit={{ translateY: "50px", opacity: 0, scale: 0.98 }}
transition={Spring.smooth(0.3)}
className="bg-theme-background pointer-events-auto flex-1"
className="bg-theme-background pointer-events-auto relative h-0 flex-1"
>
<EntryContent entryId={realEntryId} className="h-full" />
</m.div>