fix: entry empty list animation

This commit is contained in:
DIYgod 2024-06-14 00:24:47 +08:00
parent 849ac833fc
commit 689387e864
No known key found for this signature in database
1 changed files with 2 additions and 2 deletions

View File

@ -306,7 +306,7 @@ const EmptyList = (props, ref) => {
const unreadOnly = useAtomValue(unreadOnlyAtom)
return (
<div
<m.div
className="-mt-20 flex h-full flex-col items-center justify-center gap-2 text-zinc-400"
{...props}
ref={ref}
@ -322,6 +322,6 @@ const EmptyList = (props, ref) => {
Zero Items
</div>
)}
</div>
</m.div>
)
}