chore: update empty view style

This commit is contained in:
steven
2023-03-24 18:01:37 +08:00
parent 7f2cc8890a
commit 6e1f137048
2 changed files with 4 additions and 4 deletions

View File

@ -117,7 +117,7 @@ const ChatView = () => {
<Header />
<div className="p-2 w-full h-auto grow max-w-3xl py-1 px-4 sm:px-8 mx-auto">
{messageList.length === 0 ? (
<EmptyView className="-mt-12" />
<EmptyView className="mt-16" />
) : (
messageList.map((message) => <MessageView key={message.id} message={message} />)
)}