Commit 66e10f0566a979b5ba852b2f82a94d3a4280a4e7

Authored by Dmitriy Zaporozhets
1 parent 47f78a2c

Fix header avatar

app/assets/stylesheets/sections/header.scss
... ... @@ -77,6 +77,7 @@ header {
77 77 top: -4px;
78 78 img {
79 79 width: 26px;
  80 + height: 26px;
80 81 @include border-radius(4px);
81 82 }
82 83 }
... ...
app/views/layouts/_head_panel.html.haml
... ... @@ -37,4 +37,4 @@
37 37 %i.icon-signout
38 38 %li
39 39 = link_to current_user, class: "profile-pic" do
40   - = image_tag(gravatar_icon(current_user.email, 26),alt: '',class: "avatar s26")
  40 + = image_tag(gravatar_icon(current_user.email, 26), alt: '')
... ...