Skip to content

Commit

Permalink
fix: 修复收件箱过长导致样式问题
Browse files Browse the repository at this point in the history
  • Loading branch information
moonrailgun committed Feb 10, 2023
1 parent b685fee commit 4088de9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion client/web/src/routes/Main/Content/Inbox/Content/Message.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ export const InboxMessageContent: React.FC<Props> = React.memo((props) => {

return (
<div className="w-full relative">
<NearbyMessages converseId={converseId} messageId={messageId} />
<div className="h-full overflow-auto">
<NearbyMessages converseId={converseId} messageId={messageId} />
</div>

<div className="absolute bottom-4 left-0 right-0 text-center">
<div
Expand Down

0 comments on commit 4088de9

Please sign in to comment.