Use vh instead of % to fix storybook rendering of chat container.
This commit is contained in:
parent
25d52c4e1a
commit
0574725be8
@ -102,7 +102,7 @@ export default function ChatContainer(props: Props) {
|
||||
() => (
|
||||
<>
|
||||
<Virtuoso
|
||||
style={{ height: 'calc(100% - 110px)', width: 'auto' }}
|
||||
style={{ height: 'calc(100vh - 170px)', width: 'auto' }}
|
||||
ref={chatContainerRef}
|
||||
initialTopMostItemIndex={messages.length - 1} // Force alignment to bottom
|
||||
data={messages}
|
||||
|
@ -35,8 +35,8 @@ const AddMessagesChatExample = args => {
|
||||
</button>
|
||||
<ChatContainer
|
||||
messages={chatMessages}
|
||||
usernameToHighlight={null}
|
||||
chatUserId={null}
|
||||
usernameToHighlight="testuser"
|
||||
chatUserId="testuser"
|
||||
isModerator={false}
|
||||
isMobile={false}
|
||||
/>
|
||||
|
Loading…
x
Reference in New Issue
Block a user