Skip to content

Fix non-uniform contributor avatar sizes in README#87

Merged
anxiangsir merged 2 commits intomainfrom
copilot/fix-contributor-avatar-size
Feb 7, 2026
Merged

Fix non-uniform contributor avatar sizes in README#87
anxiangsir merged 2 commits intomainfrom
copilot/fix-contributor-avatar-size

Conversation

Copy link
Copy Markdown
Contributor

Copilot AI commented Feb 7, 2026

Contributor avatars rendered at inconsistent sizes because <img> tags only specified width with no height constraint.

  • Added height="100" to each avatar <img> tag to enforce uniform 100×100px rendering
  • Appended &s=100 to GitHub avatar URLs to request correctly sized images from the CDN
<!-- Before -->
<img src="https://avatars.githubusercontent.com/user?v=4" width="100" alt="user"/>

<!-- After -->
<img src="https://avatars.githubusercontent.com/user?v=4&s=100" width="100" height="100" alt="user"/>
Original prompt

contributor中头像大小不统一,请你设置一下


💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.

Co-authored-by: anxiangsir <31175974+anxiangsir@users.noreply.github.com>
Copilot AI changed the title [WIP] Fix inconsistent contributor avatar sizes Fix non-uniform contributor avatar sizes in README Feb 7, 2026
Copilot AI requested a review from anxiangsir February 7, 2026 14:46
@anxiangsir anxiangsir marked this pull request as ready for review February 7, 2026 14:47
Copilot AI review requested due to automatic review settings February 7, 2026 14:47
@anxiangsir anxiangsir merged commit d3f0070 into main Feb 7, 2026
Copy link
Copy Markdown

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Updates the README Contributors section to ensure GitHub avatar images render at a consistent size in the Markdown table.

Changes:

  • Added height="100" to each contributor avatar <img> tag.
  • Appended &s=100 to each GitHub avatar URL to request a correctly sized image.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

@anxiangsir anxiangsir deleted the copilot/fix-contributor-avatar-size branch March 2, 2026 04:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants