mirror of
https://github.com/billsonnn/nitro-react.git
synced 2024-11-22 22:30:52 +01:00
fix messenger scroll
This commit is contained in:
parent
c46dc66b4c
commit
40c1490394
@ -153,7 +153,7 @@
|
||||
height: $messenger-height;
|
||||
|
||||
.layout-grid-item {
|
||||
height: 50px;
|
||||
min-height: 50px;
|
||||
}
|
||||
|
||||
.friend-head {
|
||||
|
@ -110,9 +110,10 @@ export const FriendsMessengerView: FC<{}> = props =>
|
||||
<NitroCardHeaderView headerText={ LocalizeText('messenger.window.title', [ 'OPEN_CHAT_COUNT' ], [ visibleThreads.length.toString() ]) } onCloseClick={ event => setIsVisible(false) } />
|
||||
<NitroCardContentView>
|
||||
<Grid overflow="hidden">
|
||||
<Column size={ 4 }>
|
||||
<Column size={ 4 } overflow="hidden">
|
||||
<Text bold>{ LocalizeText('toolbar.icon.label.messenger') }</Text>
|
||||
<Column fullHeight overflow="auto">
|
||||
<Column fit overflow="auto">
|
||||
<Column>
|
||||
{ visibleThreads && (visibleThreads.length > 0) && visibleThreads.map(thread =>
|
||||
{
|
||||
return (
|
||||
@ -133,6 +134,7 @@ export const FriendsMessengerView: FC<{}> = props =>
|
||||
}) }
|
||||
</Column>
|
||||
</Column>
|
||||
</Column>
|
||||
<Column size={ 8 } overflow="hidden">
|
||||
{ activeThread &&
|
||||
<>
|
||||
|
Loading…
Reference in New Issue
Block a user