fix(message): change appearance duration and padding left

This commit is contained in:
Takuya Matsuyama 2022-03-07 11:45:37 +09:00
parent d646b164cb
commit 2098145f20
2 changed files with 2 additions and 2 deletions

View file

@ -1,5 +1,5 @@
.chat {
padding-left: 34px;
padding-left: 86px;
padding-bottom: 200px;
display: flex;

View file

@ -13,7 +13,7 @@ const useMessages = (initialValue = []) => {
n.shift()
return n
})
}, 10000)
}, 15000)
},
[messages]
)