Skip to content

Commit eb004af

Browse files
SaishWadnerejbamptonCopilot
authored
Fix #468 (#475)
* fix(ui): prevent metadata layout from shrinking Add min-w, max-w, and shrink-0 to the location/country metadata container to avoid it collapsing when name or role text is long. Addresses review feedback from PR #466. * Add Saish Wadnere to developer directory * Use standard Tailwind spacing classes instead of arbitrary values * Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: John Bampton <jbampton@users.noreply.github.com> Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
1 parent 91c20b8 commit eb004af

2 files changed

Lines changed: 15 additions & 1 deletion

File tree

src/index.njk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ layout: false
3131
{% set country = person.data.country %}
3232
{% set location = person.data.location %}
3333
{% if location or country %}
34-
<div class="flex flex-col items-end text-right gap-0.5 text-[10px] bg-[var(--bg-footer)] text-[var(--text-muted)] px-2 py-1 rounded font-bold uppercase border border-[var(--border-color)]">
34+
<div class="flex flex-col items-end text-right gap-0.5 text-[10px] bg-[var(--bg-footer)] text-[var(--text-muted)] px-2 py-1 rounded font-bold uppercase border border-[var(--border-color)] min-w-[7rem] max-w-[10rem] shrink-0">
3535
{% if location %}<span>{{ location }}</span>{% endif %}
3636
{% if country %}<span>{{ country }}</span>{% endif %}
3737
</div>

src/users/saishwadnere.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Saish Milind Wadnere
2+
github: SaishWadnere
3+
email: saishwadnere3@gmail.com
4+
instagram: https://www.instagram.com/saish_wadnere/
5+
twitter: https://x.com/saishwadnere
6+
linkedin: https://www.linkedin.com/in/saish-wadnere/
7+
country: India
8+
location: Nashik
9+
role: Student
10+
languages: Java JavaScript React HTML CSS
11+
bio: |
12+
Computer Engineering student at Sandip Institute of Technology and Research Centre, Nashik.
13+
Focused on backend development and cloud technologies, with strong experience in React and CSS.
14+
Passionate about building scalable, real-world systems and continuously improving through hands-on projects.

0 commit comments

Comments
 (0)