diff --git a/app/assets/stylesheets/pages/commits.scss b/app/assets/stylesheets/pages/commits.scss
index a392993b38d21d511242339db6ee5cfc759075cf..335d9e5efd768fd3807ce0106d286d74bedf5df0 100644
--- a/app/assets/stylesheets/pages/commits.scss
+++ b/app/assets/stylesheets/pages/commits.scss
@@ -20,8 +20,8 @@
 }
 
 .commit-row-title {
-  line-height: 20px;
-  margin-bottom: 2px;
+  line-height: 1;
+  margin-bottom: 6px;
 
   .notes_count {
     float: right;
@@ -115,7 +115,7 @@
 
   .commit-row-info {
     color: $gl-gray;
-    line-height: 24px;
+    line-height: 1;
 
     a {
       color: $gl-gray;
diff --git a/app/views/projects/commits/_commit.html.haml b/app/views/projects/commits/_commit.html.haml
index 757f4e7e8e02a600d938985d95db026eaccb93dd..a959b34a5390d93aab2d47c4ca416fb477bf54b1 100644
--- a/app/views/projects/commits/_commit.html.haml
+++ b/app/views/projects/commits/_commit.html.haml
@@ -9,7 +9,7 @@
 
 = cache(cache_key) do
   %li.commit.js-toggle-container{ id: "commit-#{commit.short_id}" }
-    = commit_author_avatar(commit)
+    = commit_author_avatar(commit, size: 36)
     .commit-row-title
       %span.item-title
         = link_to_gfm commit.title, namespace_project_commit_path(project.namespace, project, commit.id), class: "commit-row-message"