Skip to content

Commit

Permalink
Fixed Inconsistent size of images on project_contributors page
Browse files Browse the repository at this point in the history
  • Loading branch information
metavinayak committed Apr 17, 2021
1 parent ab82d15 commit 8643b38
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ function fillContributors()
var avatar = data[iter].author.avatar_url;
var newChild = "\
<div class=\"col-lg-2 col-sm3 text-center member contributor-div\">\
<img class=\"img-circle img-responsive img-center team-img\" src=\" " + avatar + "\" alt=\"\">\
<img class=\"img-circle img-responsive img-center team-img\" src=\" " + avatar + "\" height=\"200px\" width=\"200px\" alt=\"\">\
<h4><a class=\"github-profile\" target=\"_blank\" href=\"https://github.com/" + login + " \">@" + login + "</a></h3>\
<h5>Commits: " + commits + "</h5>\
</div>\
Expand Down
2 changes: 1 addition & 1 deletion project_contributors/js/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ function projectContributors () {
var avatar = data[iter].avatar_url;

var newChild = "\<div class=\"col-lg-2 col-sm3 text-center member contributor-div\">\
<img class=\"img-circle img-responsive img-center team-img\" src=\" " + avatar + "\" alt=\"\">\
<img class=\"img-circle img-responsive img-center team-img\" src=\" " + avatar + "\" height=\"200px\" width=\"200px\" alt=\"\">\
<h4><a class=\"github-profile\" target=\"_blank\" href=\"https://github.com/" + login + " \">@" + login + "</a></h3>\
<h5>Contributions: " + contributions + "</h5></div>";
contributorsDiv.innerHTML += newChild;
Expand Down

0 comments on commit 8643b38

Please sign in to comment.