Skip to content

Commit 064f1a8

Browse files
CopilotjbamptonCopilot
authored
fix(bio): unify section heading styles for consistent left alignment (#470)
* fix: align all 3 bio section headings consistently Agent-Logs-Url: https://github.com/NextCommunity/NextCommunity.github.io/sessions/c6854300-779e-4451-a940-295b87e4f119 Co-authored-by: jbampton <418747+jbampton@users.noreply.github.com> * fix: unify container padding to p-8 sm:p-12 on all three bio sections Agent-Logs-Url: https://github.com/NextCommunity/NextCommunity.github.io/sessions/b12891e7-40a5-416f-8882-415a6b6d877d Co-authored-by: jbampton <418747+jbampton@users.noreply.github.com> * Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> * fix(bio): add aria-hidden=true to decorative accent-line spans in all headings Agent-Logs-Url: https://github.com/NextCommunity/NextCommunity.github.io/sessions/3efa40f9-a3be-4701-9400-ebf98f3ec7b3 Co-authored-by: jbampton <418747+jbampton@users.noreply.github.com> * fix(bio): fix indentation of endif tag in Technologies block Agent-Logs-Url: https://github.com/NextCommunity/NextCommunity.github.io/sessions/2c11c6e7-0b98-4a7d-a1cd-d8238fafb3e8 Co-authored-by: jbampton <418747+jbampton@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: jbampton <418747+jbampton@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 b845f93 commit 064f1a8

1 file changed

Lines changed: 9 additions & 7 deletions

File tree

src/_includes/bio.njk

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
{% if bio %}
7878
<div class="user-card p-8 sm:p-12 rounded-3xl">
7979
<h2 class="text-xs font-black uppercase tracking-[0.3em] text-[var(--text-muted)] mb-6 flex items-center gap-2">
80-
<span class="w-8 h-[2px] bg-accent"></span> Professional Bio
80+
<span class="w-8 h-[2px] bg-accent" aria-hidden="true"></span> Professional Bio
8181
</h2>
8282
<div class="text-[var(--text-main)] text-lg leading-relaxed whitespace-pre-line">
8383
{{ bio }}
@@ -86,18 +86,20 @@
8686
{% endif %}
8787

8888
{% if languages is defined and languages is not null %}
89-
<div class="user-card p-8 rounded-3xl">
90-
<h2 class="text-xs font-black uppercase tracking-[0.3em] text-[var(--text-muted)] mb-6">Technologies</h2>
89+
<div class="user-card p-8 sm:p-12 rounded-3xl">
90+
<h2 class="text-xs font-black uppercase tracking-[0.3em] text-[var(--text-muted)] mb-6 flex items-center gap-2">
91+
<span class="w-8 h-[2px] bg-accent" aria-hidden="true"></span> Technologies
92+
</h2>
9193
<div class="flex flex-wrap gap-3">
9294
{% set skills = languages.split(' ') %}
9395
{% include "skills-list.njk" %}
9496
</div>
9597
</div>
96-
{% endif %}
98+
{% endif %}
9799

98-
<div class="user-card p-8 rounded-3xl">
99-
<h2 class="text-xs font-black uppercase tracking-[0.3em] text-[var(--text-muted)] mb-4 flex items-center gap-2">
100-
<span class="w-8 h-[2px] bg-accent"></span> Mini-Game
100+
<div class="user-card p-8 sm:p-12 rounded-3xl">
101+
<h2 class="text-xs font-black uppercase tracking-[0.3em] text-[var(--text-muted)] mb-6 flex items-center gap-2">
102+
<span class="w-8 h-[2px] bg-accent" aria-hidden="true"></span> Mini-Game
101103
</h2>
102104
<p class="text-sm text-[var(--text-muted)] mb-4">Catch the skill tiles before they fall! Collect enough to win XP.</p>
103105
<button

0 commit comments

Comments
 (0)