Fine-tune sidebar/content spacing at narrow tablet widths

Add 85px margin at 769-950px range to prevent sidebar overlap

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-12-04 11:33:53 -05:00
parent 38277fbb82
commit 5aa374cace
+11
View File
@@ -303,6 +303,17 @@
margin-left: 30px;
}
/* At narrow tablet widths, add extra margin to clear sidebar */
@media (min-width: 769px) and (max-width: 950px) {
article {
margin-left: 85px;
}
.breadcrumb {
margin-left: -85px;
padding-left: 85px;
}
}
/* Remove margin on mobile when sidebar is hidden */
@media (max-width: 768px) {
article {