fix style nit

This commit is contained in:
Nolan Lawson 2018-04-26 21:09:39 -07:00
parent 03e0ac72d2
commit 7ec109c6af

View file

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