diff --git a/app/soapbox/features/home_timeline/index.js b/app/soapbox/features/home_timeline/index.js index 69b8e81b4..d746e9991 100644 --- a/app/soapbox/features/home_timeline/index.js +++ b/app/soapbox/features/home_timeline/index.js @@ -96,10 +96,11 @@ class HomeTimeline extends React.PureComponent { render() { const { intl, siteTitle, isLoading, isEmpty, features } = this.props; const { done } = this.state; + const showSuggestions = features.suggestions && isEmpty && !isLoading && !done; return ( - - {(features.suggestions && isEmpty && !isLoading && !done) ? ( + + {showSuggestions ? ( {Component => } diff --git a/app/styles/components/columns.scss b/app/styles/components/columns.scss index 2748bab91..88bfab6c6 100644 --- a/app/styles/components/columns.scss +++ b/app/styles/components/columns.scss @@ -858,6 +858,10 @@ .column-list { position: relative; + + &__empty-message { + padding: 0 20px; + } } .column-loading {