Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -104,11 +104,11 @@ export default defineConfig({
url: 'https://github.com/mnkiefer',
},
'claude': {
name: 'Claude AI',
name: 'Claude',
url: 'https://claude.ai',
},
'copilot': {
name: 'GitHub Copilot',
name: 'Copilot',
url: 'https://github.com/features/copilot',
picture: 'https://avatars.githubusercontent.com/in/1143301?s=64&v=4',
},
Expand Down
34 changes: 34 additions & 0 deletions docs/src/styles/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -1061,6 +1061,40 @@ starlight-toc h2 {
display: none;
}

/* Blog Author Styling Overrides - Make author links look like regular links */
.metadata .authors .author[href] .name {
color: var(--sl-color-text); /* Use regular text color instead of accent */
text-decoration: none;
font-size: 0.875rem; /* Smaller font size to fit better */
}

.metadata .authors .author[href]:hover .name {
color: var(--sl-color-text-accent); /* Show accent color on hover */
text-decoration: underline;
}

.metadata .authors .author img {
height: 2rem; /* Smaller avatar: 32px instead of 40px */
width: 2rem;
}

.metadata .authors .author {
gap: 0.375rem; /* Tighter gap between avatar and name */
}

.metadata .authors {
gap: 0.5rem 0.75rem; /* Tighter vertical gap for better single-line layout */
}

/* Light theme overrides */
:root[data-theme='light'] .metadata .authors .author[href] .name {
color: var(--sl-color-text);
}

:root[data-theme='light'] .metadata .authors .author[href]:hover .name {
color: var(--sl-color-text-accent);
}

/* Pagination Links */
.pagination-links {
border-top: 1px solid #30363d;
Expand Down
Loading