fix style nit

This commit is contained in:
Nolan Lawson 2018-04-26 21:09:39 -07:00
parent 03e0ac72d2
commit 7ec109c6af
1 changed files with 19 additions and 20 deletions

View File

@ -7,26 +7,24 @@
{{numStatusesDisplay}}
</span>
</div>
<div class="account-profile-details-item">
<a href='/accounts/{{account.id}}/follows'>
<span class="account-profile-details-item-title">
Follows
</span>
<span class="account-profile-details-item-datum">
{{numFollowingDisplay}}
</span>
</a>
</div>
<div class="account-profile-details-item">
<a href='/accounts/{{account.id}}/followers'>
<span class="account-profile-details-item-title">
Followers
</span>
<span class="account-profile-details-item-datum">
{{numFollowersDisplay}}
</span>
</a>
</div>
<a class="account-profile-details-item"
href='/accounts/{{account.id}}/follows'>
<span class="account-profile-details-item-title">
Follows
</span>
<span class="account-profile-details-item-datum">
{{numFollowingDisplay}}
</span>
</a>
<a class="account-profile-details-item"
href='/accounts/{{account.id}}/followers'>
<span class="account-profile-details-item-title">
Followers
</span>
<span class="account-profile-details-item-datum">
{{numFollowersDisplay}}
</span>
</a>
<!-- TODO: re-enable this when we support profile editing -->
{{#if account && verifyCredentials && account.id !== verifyCredentials.id}}
<div class="account-profile-more-options">
@ -57,6 +55,7 @@
}
.account-profile-details-item:hover {
text-decoration: none;
background: var(--button-bg-hover);
cursor: pointer;
}