group timeline styling

This commit is contained in:
2458773093 2019-07-15 19:08:36 +03:00
parent 3227e74ac6
commit b1cd12c976
2 changed files with 17 additions and 8 deletions

View File

@ -88,6 +88,7 @@ class GroupTimeline extends React.PureComponent {
</div> </div>
)} )}
<div className='group__feed'>
<StatusListContainer <StatusListContainer
alwaysPrepend alwaysPrepend
scrollKey={`group_timeline-${columnId}`} scrollKey={`group_timeline-${columnId}`}
@ -95,6 +96,7 @@ class GroupTimeline extends React.PureComponent {
onLoadMore={this.handleLoadMore} onLoadMore={this.handleLoadMore}
emptyMessage={<FormattedMessage id='empty_column.group' defaultMessage='There is nothing in this group yet. When members of this group post new statuses, they will appear here.' />} emptyMessage={<FormattedMessage id='empty_column.group' defaultMessage='There is nothing in this group yet. When members of this group post new statuses, they will appear here.' />}
/> />
</div>
</div> </div>
); );
} }

View File

@ -69,4 +69,11 @@
padding: 4px 8px; padding: 4px 8px;
} }
} }
.group__feed {
background: $gab-background-container;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
overflow: hidden;
}
} }