Skip to content

Commit c4cc8b8

Browse files
its-dclaude
andcommitted
fix: mobile nav overflow, hero stacking, sidebar layout, author photo path
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent cf13c07 commit c4cc8b8

2 files changed

Lines changed: 10 additions & 2 deletions

File tree

_includes/layouts/blog.njk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
<div class="blog-about-author">
5656
<h3 class="blog-about-title">About {{ site.authorFullName }}</h3>
5757
<div class="blog-about-inner">
58-
<img src="{{ '/images/hero-profile.png' | url | absoluteUrl }}" alt="{{ site.authorFullName }}" class="blog-about-photo" width="80" height="80">
58+
<img src="{{ '/images/self/hero-darian.png' | url | absoluteUrl }}" alt="{{ site.authorFullName }}" class="blog-about-photo" width="80" height="80">
5959
<div class="blog-about-text">
6060
<p>{{ site.authorBioShort }}</p>
6161
<a href="{{ site.github }}" target="_blank" rel="noopener noreferrer" aria-label="GitHub">GitHub</a>

css/style.css

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,10 @@ a:hover {
143143
transform: translateY(-1px);
144144
}
145145

146-
@media (max-width: 600px) {
146+
@media (max-width: 768px) {
147+
.nav-links {
148+
display: none;
149+
}
147150
.nav-cta {
148151
display: none;
149152
}
@@ -279,6 +282,7 @@ a:hover {
279282
@media (max-width: 900px) {
280283
.hero-grid {
281284
grid-template-columns: 1fr;
285+
height: auto;
282286
min-height: auto;
283287
}
284288
}
@@ -1087,6 +1091,10 @@ body.page-blog .footer-col {
10871091
.blog-layout {
10881092
grid-template-columns: 1fr;
10891093
}
1094+
.blog-sidebar {
1095+
position: static;
1096+
width: 100%;
1097+
}
10901098
}
10911099

10921100
.blog-sidebar {

0 commit comments

Comments
 (0)