Skip to content

Conversation

@iakgoog
Copy link

@iakgoog iakgoog commented Oct 3, 2025

… (#791)
css_resize

@iakgoog iakgoog requested a review from jbampton as a code owner October 3, 2025 14:03
@gemini-code-assist
Copy link
Contributor

Summary of Changes

Hello @iakgoog, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request addresses an issue with the responsive display of team member images on the About page. By adjusting the CSS width properties for these avatars, the changes ensure that the images scale correctly and maintain an appropriate size across various screen dimensions, particularly for GitHub Triage team members and coordinators.

Highlights

  • Responsive Image Sizing: Modified CSS classes to improve the responsive behavior of team member avatars on the About page.
  • Specific Width Adjustments: Reduced the w and md:w classes for avatars of GitHub Triage team members and coordinators, and also adjusted the lg:w for coordinators.
  • Visual Correction: The changes aim to correct the display of images, as indicated by the provided screenshot in the PR description.
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

@deepsource-io
Copy link

deepsource-io bot commented Oct 3, 2025

Here's the code health analysis summary for commits 02047ad..3e199d2. View details on DeepSource ↗.

Analysis Summary

AnalyzerStatusSummaryLink
DeepSource Python LogoPython✅ SuccessView Check ↗
DeepSource Secrets LogoSecrets✅ SuccessView Check ↗
DeepSource Shell LogoShell✅ SuccessView Check ↗
DeepSource Docker LogoDocker✅ SuccessView Check ↗
DeepSource JavaScript LogoJavaScript✅ SuccessView Check ↗

💡 If you’re a repository administrator, you can configure the quality gates from the settings.

Copy link
Contributor

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

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

Code Review

The pull request modifies the about.md file to adjust the size of the team member avatars on the About Us page, specifically for the GitHub Triage and Brisbane Moderators sections. The image widths are reduced for smaller screen sizes (w-32 to w-20 and md:w-40 to md:w-28) while maintaining the larger size for larger screens (lg:w-[120px]).

<div class="flex flex-wrap justify-center items-end gap-6 mb-8">
<a href="https://github.com/michal-duszak" class="flex flex-col items-center text-center team-role team-role-github-triage text-team-role-github-triage">
<img class="w-32 md:w-40 lg:w-[120px] aspect-square rounded-full object-cover mb-2" src="{{ '/assets/avatars/michal-duszak.jpeg' | url }}" alt="Michal Duszak avatar" />
<img class="w-20 md:w-28 lg:w-[120px] aspect-square rounded-full object-cover mb-2" src="{{ '/assets/avatars/michal-duszak.jpeg' | url }}" alt="Michal Duszak avatar" />
Copy link
Contributor

Choose a reason for hiding this comment

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

medium

The initial width w-32 has been reduced to w-20. Ensure this change doesn't negatively impact the visual balance and readability of the avatars on smaller screens. Consider testing on various devices to confirm the responsiveness and aesthetics.

Suggested change
<img class="w-20 md:w-28 lg:w-[120px] aspect-square rounded-full object-cover mb-2" src="{{ '/assets/avatars/michal-duszak.jpeg' | url }}" alt="Michal Duszak avatar" />
<img class="w-20 md:w-28 lg:w-[120px] aspect-square rounded-full object-cover mb-2" src="{{ '/assets/avatars/michal-duszak.jpeg' | url }}" alt="Michal Duszak avatar" />

<div class="flex flex-wrap justify-center gap-6">
<a href="https://github.com/therealnugget" class="flex flex-col items-center text-center team-role team-role-coordinator text-team-role-coordinator">
<img class="w-32 md:w-40 lg:w-[225px] aspect-square rounded-full object-cover mb-2" src="{{ '/assets/avatars/therealnugget.jpeg' | url }}" alt="therealnugget avatar" />
<img class="w-20 md:w-28 lg:w-[120px] aspect-square rounded-full object-cover mb-2" src="{{ '/assets/avatars/therealnugget.jpeg' | url }}" alt="therealnugget avatar" />
Copy link
Contributor

Choose a reason for hiding this comment

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

medium

Similar to the previous change, the initial width w-32 has been reduced to w-20 here as well. Verify that this adjustment maintains a consistent look and feel across all team member avatars, especially on smaller screens.

Suggested change
<img class="w-20 md:w-28 lg:w-[120px] aspect-square rounded-full object-cover mb-2" src="{{ '/assets/avatars/therealnugget.jpeg' | url }}" alt="therealnugget avatar" />
<img class="w-20 md:w-28 lg:w-[120px] aspect-square rounded-full object-cover mb-2" src="{{ '/assets/avatars/therealnugget.jpeg' | url }}" alt="therealnugget avatar" />

Copy link
Member

@jbampton jbampton left a comment

Choose a reason for hiding this comment

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

Do not change the size of Thomas / therealnugget.

He needs a big avatar

@jbampton jbampton added this to the Hacktoberfest milestone Oct 3, 2025
@jbampton jbampton added this to Chess Oct 3, 2025
@jbampton jbampton self-assigned this Oct 3, 2025
@jbampton jbampton moved this to In Progress in Chess Oct 3, 2025
@jbampton
Copy link
Member

jbampton commented Oct 3, 2025

Hey @iakgoog I sent you an invite to join the Brisbane Social Chess Inc GitHub Organization.

The invite will go to your email.

Thanks once again 👍

@jbampton jbampton marked this pull request as draft October 3, 2025 18:26
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

Status: In Progress

Development

Successfully merging this pull request may close these issues.

2 participants