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