Files
kestrelsnest-blog/assets/css/_extra.scss
Eric Wagoner 8ac2a6ad8c Add callouts to LocallyGrown series for enhanced readability
Applied strategic callouts across all 4 posts in the LocallyGrown series:
- Info, success, warning, danger, tip, quote, and example callouts
- Improved visual hierarchy and information highlighting
- Better mobile readability with structured content blocks

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

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-23 10:02:52 -04:00

19 lines
369 B
SCSS

.app-header-social {
flex-wrap: wrap;
a:not(:last-child) {
margin-right: 0.2em;
}
}
// Fix sidebar scrolling for smaller viewports
@media (min-width: 940px) {
.app-header {
height: 100vh !important;
overflow-y: auto !important;
overflow-x: hidden !important;
min-height: unset !important;
}
}
// Import callout styles
@import 'callouts';