Bug in profile photo, without logging into github. #208294
Replies: 3 comments 2 replies
|
💬 Your Product Feedback Has Been Submitted 🎉 Thank you for taking the time to share your insights with us! Your feedback is invaluable as we build a better GitHub experience for all our users. Here's what you can expect moving forward ⏩
Where to look to see what's shipping 👀
What you can do in the meantime 💻
As a member of the GitHub community, your participation is essential. While we can't promise that every suggestion will be implemented, we want to emphasize that your feedback is instrumental in guiding our decisions and priorities. Thank you once again for your contribution to making GitHub even better! We're grateful for your ongoing support and collaboration in shaping the future of our platform. ⭐ |
|
Hi @MrWesleyR Valid UI bug report. The sticky header mini avatar at 32px width can clip circular crop on some DPI and zoom combinations while logged out profile view. What you found:
This is a CSS sizing and border radius interaction on the mini avatar in profile sticky header. Likely missing min-width matching height or border-radius 50 percent with overflow hidden at small fixed width. For product team evidence, include:
Workaround for profile owners: none needed, this affects viewers not owners. Workaround for reporters: zoom slightly or resize window above breakpoint where circle renders. Thank you for precise HTML class names and before after screenshots. This belongs in GitHub UI bug tracker via Support or staff triage from this discussion. |
|
Hi @MrWesleyR Thank you for the DevTools screenshots and for testing on both your profile and mine. That confirms this is a reproducible CSS rendering bug, not profile specific content. What your evidence shows:
This is a valid product bug. Your report is strong enough for the team to act on. What to add to strengthen the ticket:
Workaround for readers until fixed:
I will also note this on my side since you reproduced it on kit1211 profile. Good catch. |


Uh oh!
There was an error while loading. Please reload this page.
🏷️ Discussion Type
Bug
💬 Feature/Topic Area
Profile
Body
It’s a simple bug: when viewing a user's profile on GitHub (while logged out) and scrolling down—past the main profile image—on resolutions above 720p (tablet mode) 1080p 100 >90% browser dpi, a fixed bar containing the user's photo (at 32px) remains visible; if you change the width to > 38px, the image is displayed in a circular format.
Browser testing:
Bug:
html:
<span class="user-profile-mini-avatar d-table-cell v-align-middle lh-condensed-ultra pr-2">css:
.user-profile-mini-avatar { width: 32px; }Resolution:
html:
<span class="user-profile-mini-avatar d-table-cell v-align-middle lh-condensed-ultra pr-2">css:
.user-profile-mini-avatar { width: 40px; }All reactions