Added board members to grid and made aspects responsive#60
Merged
Conversation
yubinzhen
reviewed
Jun 2, 2026
yubinzhen
left a comment
Contributor
There was a problem hiding this comment.
looks good so far! if you can try to center some of the board members, that'd be great but it's okay if you can't. can you make the grid have 3 board members per row on lg screens, 2 board members per row on md screens, and 1 board member per row on sm screens.
|
|
||
| <div className="flex flex-col items-center gap-0.5 text-center"> | ||
| <p className="text-nsbe-yellow-100 text-2xl font-extrabold">{name}</p> | ||
| <p className="text-nsbe-yellow-100 text-3xl font-extrabold">{name}</p> |
| src={image} | ||
| alt={name} | ||
| className="border-nsbe-yellow-100 aspect-square w-[20vw] rounded-full border-3 object-cover" | ||
| className="border-nsbe-yellow-100 aspect-square w-[20vw] rounded-full border-4 object-cover" |
Contributor
There was a problem hiding this comment.
try to avoid hard coding the width. use code like w-1/2. the current size of the image is a little large, make it a little smaller
|
|
||
| <div className="flex flex-col items-center gap-0.5 text-center"> | ||
| <p className="text-nsbe-yellow-100 text-2xl font-extrabold">{name}</p> | ||
| <p className="text-nsbe-yellow-100 text-3xl font-extrabold">{name}</p> |
Contributor
There was a problem hiding this comment.
make sure to adjust text size according to screen size too
Collaborator
Author
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

I found that the page responsiveness adds a little gap to the side on phone screens, but that should probably clear up once the navbar is responsive. The images are still a little off-center but nothing too alarming. Theres also more members than the figma so I did 2:3:3:4.
fixes #42