diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-02-24 21:40:47 -0800 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-02-24 21:40:47 -0800 |
commit | 6fe057cc7b4ec4c7483422ea0fe2b4eb28e315df (patch) | |
tree | 064bae967330c6392c86236493f5bda43e1ad8c3 | |
parent | 82483f953671237896e8131d557642161ed5e97f (diff) | |
download | gitlab-ce-6fe057cc7b4ec4c7483422ea0fe2b4eb28e315df.tar.gz |
Fix header avatar size
-rw-r--r-- | app/assets/stylesheets/sections/header.scss | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/app/assets/stylesheets/sections/header.scss b/app/assets/stylesheets/sections/header.scss index e255cbcada8..363bc2e9a24 100644 --- a/app/assets/stylesheets/sections/header.scss +++ b/app/assets/stylesheets/sections/header.scss @@ -86,7 +86,7 @@ header { .container { width: 100% !important; - padding-left: 0px; + padding: 0px; } /** @@ -134,14 +134,13 @@ header { } .profile-pic { - position: relative; - top: -1px; - padding-right: 0px !important; + padding: 0px !important; + width: 46px; + height: 46px; + margin-left: 5px; img { - width: 50px; - height: 50px; - margin: -15px; - margin-left: 5px; + width: 46px; + height: 46px; } } |