Skip to content

Commit

Permalink
fix social links in profile header
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Wientge committed Oct 18, 2014
1 parent 797a966 commit 69d2736
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/views/members/memberDetail.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
<div class="col-md-10">
<h1>{{profile.name}}</h1>
<p>{{ summarize profile.bio}}</p>
<span class="label label-primary">+{{profile.points}} Points</span>
<ul class="list-inline">
<li><span class="label label-primary">+{{profile.points}} Points</span></li>
{{#each profile.socialLinks}}
<li><a href="{{url}}" class="btn btn-default btn-social-link" target="_blank"><i class="ion-social-{{service}}"></i></a></li>
<li><a href="{{url}}" target="_blank"><i class="ion-social-{{service}}"></i></a></li>
{{/each}}
</ul>
</div>
Expand Down
8 changes: 8 additions & 0 deletions client/views/members/memberDetail.less
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,12 @@
.label-primary {
background: @gray-darker;
}

.list-inline {
font-size: @font-size-large;
}

a {
color: #fff;
}
}

0 comments on commit 69d2736

Please sign in to comment.