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:
parent
d7a7b0c8c3
commit
b05f49fe84
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in New Issue