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,14 +88,16 @@ class GroupTimeline extends React.PureComponent {
</div> </div>
)} )}
<StatusListContainer <div className='group__feed'>
alwaysPrepend <StatusListContainer
scrollKey={`group_timeline-${columnId}`} alwaysPrepend
timelineId={`group:${id}`} scrollKey={`group_timeline-${columnId}`}
onLoadMore={this.handleLoadMore} timelineId={`group:${id}`}
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.' />} 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.' />}
/>
</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;
}
} }