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>
)}
<StatusListContainer
alwaysPrepend
scrollKey={`group_timeline-${columnId}`}
timelineId={`group:${id}`}
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 className='group__feed'>
<StatusListContainer
alwaysPrepend
scrollKey={`group_timeline-${columnId}`}
timelineId={`group:${id}`}
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>
);
}
}
}

View File

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