about summary refs log tree commit diff
path: root/app/views/accounts
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2017-07-24 17:56:50 +0200
committerGitHub <noreply@github.com>2017-07-24 17:56:50 +0200
commit1306d637a209393826cc5bf830864a281db71066 (patch)
treeca5a56d5ab7bae5a9c09c5f5fc57d697396d62e6 /app/views/accounts
parent462b3752e48c2cad8d61bd1c35ad94d6b660c8e7 (diff)
Fix oddities with public profile CSS (#4341)
* Fix oddities with public profile CSS

* Remove trailing whitespace
Diffstat (limited to 'app/views/accounts')
-rw-r--r--app/views/accounts/show.html.haml6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/views/accounts/show.html.haml b/app/views/accounts/show.html.haml
index 7ed634e5d..150c14791 100644
--- a/app/views/accounts/show.html.haml
+++ b/app/views/accounts/show.html.haml
@@ -23,9 +23,9 @@
     .accounts-grid
       = render 'nothing_here'
   - else
-    .activity-stream
+    .activity-stream.with-header
       = render partial: 'stream_entries/status', collection: @statuses, as: :status
 
-  .pagination
-    - if @statuses.size == 20
+  - if @statuses.size == 20
+    .pagination
       = link_to safe_join([t('pagination.next'), fa_icon('chevron-right')], ' '), short_account_url(@account, max_id: @statuses.last.id), class: 'next', rel: 'next'