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>
19 lines
369 B
SCSS
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'; |