fix(InboxContent): add background color to layout content for better visibility (#6417)

This commit is contained in:
Sheldon Guo 2025-03-11 15:16:47 +08:00 committed by GitHub
parent d90c17b3a4
commit d04bc83f2f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -155,7 +155,9 @@ const InnerInboxContent = () => {
}}
/>
</Layout.Sider>
<Layout.Content style={{ padding: token.paddingLG, height: '100%', overflowY: 'auto' }}>
<Layout.Content
style={{ padding: token.paddingLG, height: '100%', overflowY: 'auto', backgroundColor: token.colorBgLayout }}
>
{selectedChannelName ? <MessageList /> : null}
</Layout.Content>
</Layout>