-
Notifications
You must be signed in to change notification settings - Fork 25.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove hand cursor from author location #354
Conversation
Can you run |
Added. |
@@ -23,7 +23,7 @@ <h3 class="author__name">{{ author.name }}</h3> | |||
<button class="btn btn--inverse">Follow</button> | |||
<ul class="author__urls social-icons"> | |||
{% if author.location %} | |||
<li><i class="fa fa-fw fa-map-marker" aria-hidden="true"></i> {{ author.location }}</li> | |||
<li class="author__location"><i class="fa fa-fw fa-map-marker" aria-hidden="true"></i> {{ author.location }}</li> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Took a closer look and adding the author__location
class to the <li>
element is unnecessary. As is the .author__location
declaration in _sidebar.scss
.
If cursor: default
is added to .author__urls
here you can get away with adding a single line and not having to mess with the sidebar's markup.
… surrounding links. - Close #354
… surrounding links. - Close mmistakes#354
… surrounding links. - Close mmistakes#354
… surrounding links. - Close mmistakes#354
… surrounding links. - Close mmistakes#354
No description provided.