feat(MiniGraph): Implement 2-level depth, square aspect ratio & fix hero image
This commit is contained in:
parent
7d0851f489
commit
1853271bd6
|
@ -8,6 +8,8 @@ interface Props {
|
||||||
title: string; // Current post title
|
title: string; // Current post title
|
||||||
tags?: string[]; // Current post tags
|
tags?: string[]; // Current post tags
|
||||||
category?: string; // Current post category
|
category?: string; // Current post category
|
||||||
|
relatedPosts?: any[]; // Related posts data
|
||||||
|
allPosts?: any[]; // All posts for second level relationships
|
||||||
}
|
}
|
||||||
|
|
||||||
// Extract props with defaults
|
// Extract props with defaults
|
||||||
|
@ -15,34 +17,127 @@ const {
|
||||||
slug,
|
slug,
|
||||||
title,
|
title,
|
||||||
tags = [],
|
tags = [],
|
||||||
category = "Uncategorized"
|
category = "Uncategorized",
|
||||||
|
relatedPosts = [],
|
||||||
|
allPosts = []
|
||||||
} = Astro.props;
|
} = Astro.props;
|
||||||
|
|
||||||
// Generate unique ID for the graph container
|
// Generate unique ID for the graph container
|
||||||
const graphId = `graph-${Math.random().toString(36).substring(2, 8)}`;
|
const graphId = `graph-${Math.random().toString(36).substring(2, 8)}`;
|
||||||
|
|
||||||
// Prepare simple graph data for just the post and its tags
|
// Get all unique tags from related posts (Level 1 tags)
|
||||||
|
const relatedPostsTags = relatedPosts
|
||||||
|
.flatMap(post => post.data.tags || [])
|
||||||
|
.filter(tag => !tags.includes(tag)); // Exclude current post tags to avoid duplicates
|
||||||
|
|
||||||
|
// Get Level 2 posts: posts related to Level 1 tags (excluding current post and Level 1 posts)
|
||||||
|
const level2PostIds = new Set();
|
||||||
|
const level2Posts = [];
|
||||||
|
|
||||||
|
// For each Level 1 tag, find related posts
|
||||||
|
tags.forEach(tag => {
|
||||||
|
allPosts.forEach(post => {
|
||||||
|
// Skip if post is current post or already in related posts
|
||||||
|
if (post.slug === slug || relatedPosts.some(rp => rp.slug === post.slug)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// If post has the tag and isn't already added
|
||||||
|
if (post.data.tags?.includes(tag) && !level2PostIds.has(post.slug)) {
|
||||||
|
level2PostIds.add(post.slug);
|
||||||
|
level2Posts.push(post);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
// Get Level 2 tags from Level 2 posts
|
||||||
|
const level2Tags = new Set();
|
||||||
|
level2Posts.forEach(post => {
|
||||||
|
(post.data.tags || []).forEach(tag => {
|
||||||
|
// Only add if not already in Level 0 or Level 1 tags
|
||||||
|
if (!tags.includes(tag) && !relatedPostsTags.includes(tag)) {
|
||||||
|
level2Tags.add(tag);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
// Prepare nodes data with different levels
|
||||||
const nodes = [
|
const nodes = [
|
||||||
// Current post node
|
// Level 0: Current post node
|
||||||
{
|
{
|
||||||
id: slug,
|
id: slug,
|
||||||
label: title,
|
label: title,
|
||||||
type: "post"
|
type: "post",
|
||||||
|
level: 0
|
||||||
},
|
},
|
||||||
// Tag nodes
|
// Level 1: Tag nodes
|
||||||
...tags.map(tag => ({
|
...tags.map(tag => ({
|
||||||
id: `tag-${tag}`,
|
id: `tag-${tag}`,
|
||||||
label: tag,
|
label: tag,
|
||||||
type: "tag"
|
type: "tag",
|
||||||
|
level: 1
|
||||||
|
})),
|
||||||
|
// Level 1: Related post nodes
|
||||||
|
...relatedPosts.map(post => ({
|
||||||
|
id: post.slug,
|
||||||
|
label: post.data.title,
|
||||||
|
type: "post",
|
||||||
|
level: 1
|
||||||
|
})),
|
||||||
|
// Level 2: Related tags nodes
|
||||||
|
...relatedPostsTags.map(tag => ({
|
||||||
|
id: `tag-${tag}`,
|
||||||
|
label: tag,
|
||||||
|
type: "tag",
|
||||||
|
level: 2
|
||||||
|
})),
|
||||||
|
// Level 2: Posts related to tags
|
||||||
|
...level2Posts.map(post => ({
|
||||||
|
id: post.slug,
|
||||||
|
label: post.data.title,
|
||||||
|
type: "post",
|
||||||
|
level: 2
|
||||||
|
})),
|
||||||
|
// Level 2: Tags from Level 2 posts
|
||||||
|
...[...level2Tags].map(tag => ({
|
||||||
|
id: `tag-${tag}`,
|
||||||
|
label: tag.toString(),
|
||||||
|
type: "tag",
|
||||||
|
level: 2
|
||||||
}))
|
}))
|
||||||
];
|
];
|
||||||
|
|
||||||
// Create edges connecting post to tags
|
// Create edges connecting nodes
|
||||||
const edges = tags.map(tag => ({
|
const edges = [
|
||||||
source: slug,
|
// Level 0 to Level 1: Current post to its tags
|
||||||
target: `tag-${tag}`,
|
...tags.map(tag => ({
|
||||||
type: "post-tag"
|
source: slug,
|
||||||
}));
|
target: `tag-${tag}`,
|
||||||
|
type: "post-tag"
|
||||||
|
})),
|
||||||
|
// Level 0 to Level 1: Current post to related posts
|
||||||
|
...relatedPosts.map(post => ({
|
||||||
|
source: slug,
|
||||||
|
target: post.slug,
|
||||||
|
type: "post-related"
|
||||||
|
})),
|
||||||
|
// Level 1 to Level 2: Related posts to their tags
|
||||||
|
...relatedPosts.flatMap(post =>
|
||||||
|
(post.data.tags || []).map(tag => ({
|
||||||
|
source: post.slug,
|
||||||
|
target: `tag-${tag}`,
|
||||||
|
type: "post-tag"
|
||||||
|
}))
|
||||||
|
),
|
||||||
|
// Level 1 to Level 2: Tags to related posts
|
||||||
|
...level2Posts.flatMap(post =>
|
||||||
|
tags.filter(tag => post.data.tags?.includes(tag)).map(tag => ({
|
||||||
|
source: `tag-${tag}`,
|
||||||
|
target: post.slug,
|
||||||
|
type: "tag-post"
|
||||||
|
}))
|
||||||
|
)
|
||||||
|
];
|
||||||
|
|
||||||
// Prepare graph data object
|
// Prepare graph data object
|
||||||
const graphData = { nodes, edges };
|
const graphData = { nodes, edges };
|
||||||
|
@ -69,7 +164,7 @@ const graphData = { nodes, edges };
|
||||||
|
|
||||||
.mini-graph-container {
|
.mini-graph-container {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 200px;
|
aspect-ratio: 1 / 1; /* Create square aspect ratio */
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
border: 1px solid var(--card-border, rgba(56, 189, 248, 0.2));
|
border: 1px solid var(--card-border, rgba(56, 189, 248, 0.2));
|
||||||
|
@ -125,7 +220,8 @@ const graphData = { nodes, edges };
|
||||||
data: {
|
data: {
|
||||||
id: node.id,
|
id: node.id,
|
||||||
label: node.label,
|
label: node.label,
|
||||||
type: node.type
|
type: node.type,
|
||||||
|
level: node.level
|
||||||
}
|
}
|
||||||
})),
|
})),
|
||||||
...graphData.edges.map((edge, index) => ({
|
...graphData.edges.map((edge, index) => ({
|
||||||
|
@ -155,47 +251,104 @@ const graphData = { nodes, edges };
|
||||||
'text-max-width': '60px'
|
'text-max-width': '60px'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
// Post node style
|
// Current post node style (Level 0)
|
||||||
{
|
{
|
||||||
selector: 'node[type="post"]',
|
selector: 'node[type="post"][level=0]',
|
||||||
style: {
|
style: {
|
||||||
'background-color': '#06B6D4',
|
'background-color': '#06B6D4',
|
||||||
'width': 30,
|
'width': 30,
|
||||||
'height': 30,
|
'height': 30,
|
||||||
'font-size': '9px',
|
'font-size': '9px',
|
||||||
'text-max-width': '80px'
|
'text-max-width': '80px',
|
||||||
|
'border-width': 2,
|
||||||
|
'border-color': '#38BDF8'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
// Tag node style
|
// Related post node style (Level 1)
|
||||||
{
|
{
|
||||||
selector: 'node[type="tag"]',
|
selector: 'node[type="post"][level=1]',
|
||||||
|
style: {
|
||||||
|
'background-color': '#3B82F6',
|
||||||
|
'width': 25,
|
||||||
|
'height': 25,
|
||||||
|
'font-size': '8px'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
// Distant post node style (Level 2)
|
||||||
|
{
|
||||||
|
selector: 'node[type="post"][level=2]',
|
||||||
|
style: {
|
||||||
|
'background-color': '#60A5FA',
|
||||||
|
'width': 20,
|
||||||
|
'height': 20,
|
||||||
|
'font-size': '7px',
|
||||||
|
'opacity': 0.8
|
||||||
|
}
|
||||||
|
},
|
||||||
|
// Primary tag node style (Level 1)
|
||||||
|
{
|
||||||
|
selector: 'node[type="tag"][level=1]',
|
||||||
style: {
|
style: {
|
||||||
'background-color': '#10B981',
|
'background-color': '#10B981',
|
||||||
'shape': 'diamond',
|
'shape': 'diamond',
|
||||||
'width': 18,
|
'width': 20,
|
||||||
'height': 18
|
'height': 20
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
// Edge style
|
// Secondary tag node style (Level 2)
|
||||||
{
|
{
|
||||||
selector: 'edge',
|
selector: 'node[type="tag"][level=2]',
|
||||||
style: {
|
style: {
|
||||||
'width': 1,
|
'background-color': '#34D399',
|
||||||
'line-color': 'rgba(16, 185, 129, 0.6)',
|
'shape': 'diamond',
|
||||||
|
'width': 15,
|
||||||
|
'height': 15,
|
||||||
|
'opacity': 0.8
|
||||||
|
}
|
||||||
|
},
|
||||||
|
// Direct edge style
|
||||||
|
{
|
||||||
|
selector: 'edge[type="post-tag"]',
|
||||||
|
style: {
|
||||||
|
'width': 1.5,
|
||||||
|
'line-color': 'rgba(16, 185, 129, 0.7)',
|
||||||
|
'line-style': 'solid',
|
||||||
|
'curve-style': 'bezier',
|
||||||
|
'opacity': 0.8
|
||||||
|
}
|
||||||
|
},
|
||||||
|
// Related post edge style
|
||||||
|
{
|
||||||
|
selector: 'edge[type="post-related"]',
|
||||||
|
style: {
|
||||||
|
'width': 1.5,
|
||||||
|
'line-color': 'rgba(59, 130, 246, 0.7)',
|
||||||
'line-style': 'dashed',
|
'line-style': 'dashed',
|
||||||
'curve-style': 'bezier',
|
'curve-style': 'bezier',
|
||||||
'opacity': 0.7
|
'opacity': 0.8
|
||||||
|
}
|
||||||
|
},
|
||||||
|
// Secondary connections
|
||||||
|
{
|
||||||
|
selector: 'edge[type="tag-post"]',
|
||||||
|
style: {
|
||||||
|
'width': 1,
|
||||||
|
'line-color': 'rgba(16, 185, 129, 0.4)',
|
||||||
|
'line-style': 'dotted',
|
||||||
|
'curve-style': 'bezier',
|
||||||
|
'opacity': 0.6
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
// Simple layout for small space
|
// Improved layout for multi-level visualization
|
||||||
layout: {
|
layout: {
|
||||||
name: 'concentric',
|
name: 'concentric',
|
||||||
concentric: function(node) {
|
concentric: function(node) {
|
||||||
return node.data('type') === 'post' ? 10 : 1;
|
// Use node level for concentric layout
|
||||||
|
return 10 - node.data('level') * 3;
|
||||||
},
|
},
|
||||||
levelWidth: function() { return 1; },
|
levelWidth: function() { return 2; },
|
||||||
minNodeSpacing: 50,
|
minNodeSpacing: 40,
|
||||||
animate: false
|
animate: false
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -207,6 +360,12 @@ const graphData = { nodes, edges };
|
||||||
window.location.href = `/tag/${tagName}`;
|
window.location.href = `/tag/${tagName}`;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
cy.on('tap', 'node[type="post"][level!=0]', function(evt) {
|
||||||
|
const node = evt.target;
|
||||||
|
const postSlug = node.id();
|
||||||
|
window.location.href = `/posts/${postSlug}/`;
|
||||||
|
});
|
||||||
|
|
||||||
// Fit graph to container
|
// Fit graph to container
|
||||||
cy.fit(undefined, 20);
|
cy.fit(undefined, 20);
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
// src/pages/posts/[slug].astro
|
// src/pages/posts/[slug].astro
|
||||||
import { getCollection } from 'astro:content';
|
import { getCollection } from 'astro:content';
|
||||||
import BaseLayout from '../../layouts/BaseLayout.astro';
|
import BaseLayout from '../../layouts/BaseLayout.astro';
|
||||||
import MiniGraph from '../../components/MiniGraph.astro'; // Add import for MiniGraph
|
import MiniGraph from '../../components/MiniGraph.astro';
|
||||||
|
|
||||||
// Required getStaticPaths function for dynamic routes
|
// Required getStaticPaths function for dynamic routes
|
||||||
export async function getStaticPaths() {
|
export async function getStaticPaths() {
|
||||||
|
@ -11,7 +11,7 @@ export async function getStaticPaths() {
|
||||||
const allPosts = await getCollection('posts', ({ data }) => {
|
const allPosts = await getCollection('posts', ({ data }) => {
|
||||||
return import.meta.env.PROD ? !data.draft : true;
|
return import.meta.env.PROD ? !data.draft : true;
|
||||||
});
|
});
|
||||||
|
|
||||||
return allPosts.map(post => ({
|
return allPosts.map(post => ({
|
||||||
params: { slug: post.slug },
|
params: { slug: post.slug },
|
||||||
props: { post, allPosts },
|
props: { post, allPosts },
|
||||||
|
@ -58,10 +58,10 @@ const getISODate = (date) => {
|
||||||
// Find related posts by tags
|
// Find related posts by tags
|
||||||
const getRelatedPosts = (currentPost, allPosts, maxPosts = 3) => {
|
const getRelatedPosts = (currentPost, allPosts, maxPosts = 3) => {
|
||||||
if (!currentPost || !allPosts) return [];
|
if (!currentPost || !allPosts) return [];
|
||||||
|
|
||||||
// Get current post tags
|
// Get current post tags
|
||||||
const postTags = currentPost.data.tags || [];
|
const postTags = currentPost.data.tags || [];
|
||||||
|
|
||||||
// If no tags, just return recent posts
|
// If no tags, just return recent posts
|
||||||
if (postTags.length === 0) {
|
if (postTags.length === 0) {
|
||||||
return allPosts
|
return allPosts
|
||||||
|
@ -73,7 +73,7 @@ const getRelatedPosts = (currentPost, allPosts, maxPosts = 3) => {
|
||||||
})
|
})
|
||||||
.slice(0, maxPosts);
|
.slice(0, maxPosts);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Score posts by matching tags
|
// Score posts by matching tags
|
||||||
const scoredPosts = allPosts
|
const scoredPosts = allPosts
|
||||||
.filter(p => p.slug !== currentPost.slug && !p.data.draft)
|
.filter(p => p.slug !== currentPost.slug && !p.data.draft)
|
||||||
|
@ -86,20 +86,20 @@ const getRelatedPosts = (currentPost, allPosts, maxPosts = 3) => {
|
||||||
.sort((a, b) => {
|
.sort((a, b) => {
|
||||||
// Sort by score first
|
// Sort by score first
|
||||||
if (b.score !== a.score) return b.score - a.score;
|
if (b.score !== a.score) return b.score - a.score;
|
||||||
|
|
||||||
// If scores are equal, sort by date
|
// If scores are equal, sort by date
|
||||||
const dateA = a.post.data.pubDate ? new Date(a.post.data.pubDate) : new Date(0);
|
const dateA = a.post.data.pubDate ? new Date(a.post.data.pubDate) : new Date(0);
|
||||||
const dateB = b.post.data.pubDate ? new Date(b.post.data.pubDate) : new Date(0);
|
const dateB = b.post.data.pubDate ? new Date(b.post.data.pubDate) : new Date(0);
|
||||||
return dateB.getTime() - dateA.getTime();
|
return dateB.getTime() - dateA.getTime();
|
||||||
})
|
})
|
||||||
.slice(0, maxPosts);
|
.slice(0, maxPosts);
|
||||||
|
|
||||||
// If we don't have enough related posts by tags, add recent posts
|
// If we don't have enough related posts by tags, add recent posts
|
||||||
if (scoredPosts.length < maxPosts) {
|
if (scoredPosts.length < maxPosts) {
|
||||||
const recentPosts = allPosts
|
const recentPosts = allPosts
|
||||||
.filter(p => {
|
.filter(p => {
|
||||||
return p.slug !== currentPost.slug &&
|
return p.slug !== currentPost.slug &&
|
||||||
!p.data.draft &&
|
!p.data.draft &&
|
||||||
!scoredPosts.some(sp => sp.post.slug === p.slug);
|
!scoredPosts.some(sp => sp.post.slug === p.slug);
|
||||||
})
|
})
|
||||||
.sort((a, b) => {
|
.sort((a, b) => {
|
||||||
|
@ -108,10 +108,10 @@ const getRelatedPosts = (currentPost, allPosts, maxPosts = 3) => {
|
||||||
return dateB.getTime() - dateA.getTime();
|
return dateB.getTime() - dateA.getTime();
|
||||||
})
|
})
|
||||||
.slice(0, maxPosts - scoredPosts.length);
|
.slice(0, maxPosts - scoredPosts.length);
|
||||||
|
|
||||||
return [...scoredPosts.map(sp => sp.post), ...recentPosts];
|
return [...scoredPosts.map(sp => sp.post), ...recentPosts];
|
||||||
}
|
}
|
||||||
|
|
||||||
return scoredPosts.map(sp => sp.post);
|
return scoredPosts.map(sp => sp.post);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -119,7 +119,7 @@ const getRelatedPosts = (currentPost, allPosts, maxPosts = 3) => {
|
||||||
const relatedPosts = getRelatedPosts(post, allPosts);
|
const relatedPosts = getRelatedPosts(post, allPosts);
|
||||||
|
|
||||||
// Check for explicitly related posts in frontmatter
|
// Check for explicitly related posts in frontmatter
|
||||||
const explicitRelatedPosts = post.data.related_posts
|
const explicitRelatedPosts = post.data.related_posts
|
||||||
? allPosts.filter(p => post.data.related_posts.includes(p.slug))
|
? allPosts.filter(p => post.data.related_posts.includes(p.slug))
|
||||||
: [];
|
: [];
|
||||||
|
|
||||||
|
@ -144,51 +144,44 @@ const { Content } = await post.render();
|
||||||
{post.data.author && <div class="author">By {post.data.author}</div>}
|
{post.data.author && <div class="author">By {post.data.author}</div>}
|
||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
{post.data.heroImage && (
|
|
||||||
<div class="hero-image">
|
|
||||||
<img src={post.data.heroImage} alt={post.data.title} />
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
|
|
||||||
<div class="post-content">
|
<div class="post-content">
|
||||||
<div class="post-body">
|
<div class="post-main-column">
|
||||||
<Content />
|
{post.data.heroImage && (
|
||||||
|
<div class="hero-image">
|
||||||
|
<img src={post.data.heroImage} alt={post.data.title} />
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
<div class="post-body">
|
||||||
|
<Content />
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<aside class="post-sidebar">
|
<aside class="post-sidebar">
|
||||||
<!-- 1. Author Card (New) -->
|
|
||||||
{post.data.author && (
|
{post.data.author && (
|
||||||
<div class="author-card sidebar-block">
|
<div class="author-section sidebar-block">
|
||||||
<h3 class="sidebar-title">Author</h3>
|
<h3>Author</h3>
|
||||||
<div class="author-profile">
|
<div class="author-card">
|
||||||
<div class="author-avatar">
|
<div class="author-name">{post.data.author}</div>
|
||||||
{post.data.authorImage ?
|
|
||||||
<img src={post.data.authorImage} alt={post.data.author} /> :
|
|
||||||
<div class="default-avatar">{post.data.author.charAt(0)}</div>
|
|
||||||
}
|
|
||||||
</div>
|
|
||||||
<div class="author-info">
|
|
||||||
<div class="author-name">{post.data.author}</div>
|
|
||||||
{post.data.authorBio && <div class="author-bio">{post.data.authorBio}</div>}
|
|
||||||
{post.data.authorUrl && <a href={post.data.authorUrl} class="author-link">Profile</a>}
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
<!-- 2. Mini Knowledge Graph (New) -->
|
<div class="knowledge-graph-section sidebar-block">
|
||||||
<MiniGraph
|
<MiniGraph
|
||||||
slug={post.slug}
|
slug={post.slug}
|
||||||
title={post.data.title}
|
title={post.data.title}
|
||||||
tags={post.data.tags || []}
|
tags={post.data.tags || []}
|
||||||
category={post.data.category || ''}
|
category={post.data.category || "Uncategorized"}
|
||||||
/>
|
relatedPosts={combinedRelatedPosts}
|
||||||
|
allPosts={allPosts}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
<!-- 3. Tags (Existing, moved below MiniGraph) -->
|
|
||||||
{post.data.tags && post.data.tags.length > 0 && (
|
{post.data.tags && post.data.tags.length > 0 && (
|
||||||
<div class="tags-section sidebar-block">
|
<div class="tags-section sidebar-block">
|
||||||
<h3 class="sidebar-title">Tags</h3>
|
<h3>Tags</h3>
|
||||||
<div class="tags">
|
<div class="tags">
|
||||||
{post.data.tags.map(tag => (
|
{post.data.tags.map(tag => (
|
||||||
<a href={`/tag/${tag}`} class="tag">{tag}</a>
|
<a href={`/tag/${tag}`} class="tag">{tag}</a>
|
||||||
|
@ -196,19 +189,19 @@ const { Content } = await post.render();
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{post.data.category && (
|
{post.data.category && (
|
||||||
<div class="category-section sidebar-block">
|
<div class="category-section sidebar-block">
|
||||||
<h3 class="sidebar-title">Category</h3>
|
<h3>Category</h3>
|
||||||
<a href={`/categories/${post.data.category}`} class="category">
|
<a href={`/categories/${post.data.category}`} class="category">
|
||||||
{post.data.category}
|
{post.data.category}
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{post.data.categories && post.data.categories.length > 0 && (
|
{post.data.categories && post.data.categories.length > 0 && (
|
||||||
<div class="categories-section sidebar-block">
|
<div class="categories-section sidebar-block">
|
||||||
<h3 class="sidebar-title">Categories</h3>
|
<h3>Categories</h3>
|
||||||
<div class="categories">
|
<div class="categories">
|
||||||
{post.data.categories.map(category => (
|
{post.data.categories.map(category => (
|
||||||
<a href={`/categories/${category}`} class="category">
|
<a href={`/categories/${category}`} class="category">
|
||||||
|
@ -218,10 +211,10 @@ const { Content } = await post.render();
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{combinedRelatedPosts.length > 0 && (
|
{combinedRelatedPosts.length > 0 && (
|
||||||
<div class="related-posts-section sidebar-block">
|
<div class="related-posts-section sidebar-block">
|
||||||
<h3 class="sidebar-title">Related Articles</h3>
|
<h3>Related Articles</h3>
|
||||||
<ul class="related-posts">
|
<ul class="related-posts">
|
||||||
{combinedRelatedPosts.map(relatedPost => (
|
{combinedRelatedPosts.map(relatedPost => (
|
||||||
<li>
|
<li>
|
||||||
|
@ -238,7 +231,7 @@ const { Content } = await post.render();
|
||||||
)}
|
)}
|
||||||
</aside>
|
</aside>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="post-navigation">
|
<div class="post-navigation">
|
||||||
<a href="/blog" class="back-to-blog">
|
<a href="/blog" class="back-to-blog">
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||||
|
@ -257,22 +250,22 @@ const { Content } = await post.render();
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
padding: 0 var(--container-padding, 1.5rem);
|
padding: 0 var(--container-padding, 1.5rem);
|
||||||
}
|
}
|
||||||
|
|
||||||
.blog-post {
|
.blog-post {
|
||||||
padding: 2rem 0;
|
padding: 2rem 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.post-header {
|
.post-header {
|
||||||
margin-bottom: 2rem;
|
margin-bottom: 2rem;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.post-header h1 {
|
.post-header h1 {
|
||||||
font-size: var(--font-size-4xl, 2.25rem);
|
font-size: var(--font-size-4xl, 2.25rem);
|
||||||
margin-bottom: 1rem;
|
margin-bottom: 1rem;
|
||||||
line-height: 1.2;
|
line-height: 1.2;
|
||||||
}
|
}
|
||||||
|
|
||||||
.post-meta {
|
.post-meta {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
|
@ -282,117 +275,61 @@ const { Content } = await post.render();
|
||||||
font-size: var(--font-size-sm, 0.875rem);
|
font-size: var(--font-size-sm, 0.875rem);
|
||||||
font-family: var(--font-mono);
|
font-family: var(--font-mono);
|
||||||
}
|
}
|
||||||
|
|
||||||
.hero-image {
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
border-radius: 12px;
|
|
||||||
overflow: hidden;
|
|
||||||
border: 1px solid var(--border-primary);
|
|
||||||
}
|
|
||||||
|
|
||||||
.hero-image img {
|
|
||||||
width: 100%;
|
|
||||||
height: auto;
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
|
|
||||||
.post-content {
|
.post-content {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: 3fr 1fr;
|
grid-template-columns: 3fr 1fr;
|
||||||
gap: 2rem;
|
gap: 2rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.post-main-column {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hero-image {
|
||||||
|
margin-bottom: 2rem;
|
||||||
|
border-radius: 12px;
|
||||||
|
overflow: hidden;
|
||||||
|
border: 1px solid var(--border-primary);
|
||||||
|
/* Hero image now contained within post-main-column */
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hero-image img {
|
||||||
|
width: 100%;
|
||||||
|
height: auto;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
.post-body {
|
.post-body {
|
||||||
background: var(--card-bg);
|
background: var(--card-bg);
|
||||||
border-radius: 12px;
|
border-radius: 12px;
|
||||||
padding: 2rem;
|
padding: 2rem;
|
||||||
border: 1px solid var(--border-primary);
|
border: 1px solid var(--border-primary);
|
||||||
}
|
}
|
||||||
|
|
||||||
.post-sidebar {
|
.post-sidebar {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
gap: 1.5rem;
|
gap: 1.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sidebar-block {
|
.sidebar-block {
|
||||||
background: var(--card-bg);
|
background: var(--card-bg);
|
||||||
border-radius: 12px;
|
border-radius: 12px;
|
||||||
padding: 1.5rem;
|
padding: 1.5rem;
|
||||||
border: 1px solid var(--border-primary);
|
border: 1px solid var(--border-primary);
|
||||||
}
|
}
|
||||||
|
|
||||||
.sidebar-block h3, .sidebar-title {
|
.sidebar-block h3 {
|
||||||
font-size: var(--font-size-lg, 1.125rem);
|
font-size: var(--font-size-lg, 1.125rem);
|
||||||
margin-bottom: 1rem;
|
margin-bottom: 1rem;
|
||||||
color: var(--text-primary);
|
color: var(--text-primary);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Author Card Styles */
|
.knowledge-graph-section {
|
||||||
.author-profile {
|
padding: 1rem;
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
gap: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.author-avatar {
|
|
||||||
width: 60px;
|
|
||||||
height: 60px;
|
|
||||||
border-radius: 50%;
|
|
||||||
overflow: hidden;
|
|
||||||
border: 2px solid var(--accent-primary);
|
|
||||||
}
|
|
||||||
|
|
||||||
.author-avatar img {
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
object-fit: cover;
|
|
||||||
}
|
|
||||||
|
|
||||||
.default-avatar {
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
|
|
||||||
color: white;
|
|
||||||
font-size: 1.5rem;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
.author-info {
|
|
||||||
flex: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
.author-name {
|
|
||||||
font-weight: 600;
|
|
||||||
font-size: 1.1rem;
|
|
||||||
margin-bottom: 0.25rem;
|
|
||||||
color: var(--text-primary);
|
|
||||||
}
|
|
||||||
|
|
||||||
.author-bio {
|
|
||||||
font-size: 0.875rem;
|
|
||||||
color: var(--text-secondary);
|
|
||||||
margin-bottom: 0.5rem;
|
|
||||||
line-height: 1.4;
|
|
||||||
}
|
|
||||||
|
|
||||||
.author-link {
|
|
||||||
display: inline-block;
|
|
||||||
font-size: 0.8rem;
|
|
||||||
padding: 0.25rem 0.75rem;
|
|
||||||
background: rgba(6, 182, 212, 0.1);
|
|
||||||
border-radius: 20px;
|
|
||||||
color: var(--accent-primary);
|
|
||||||
text-decoration: none;
|
|
||||||
transition: all 0.2s ease;
|
|
||||||
}
|
|
||||||
|
|
||||||
.author-link:hover {
|
|
||||||
background: rgba(6, 182, 212, 0.2);
|
|
||||||
transform: translateY(-2px);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.tags {
|
.tags {
|
||||||
|
@ -400,7 +337,7 @@ const { Content } = await post.render();
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
gap: 0.5rem;
|
gap: 0.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tag {
|
.tag {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
padding: 0.25rem 0.75rem;
|
padding: 0.25rem 0.75rem;
|
||||||
|
@ -411,18 +348,18 @@ const { Content } = await post.render();
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
transition: all 0.2s ease;
|
transition: all 0.2s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tag:hover {
|
.tag:hover {
|
||||||
background: rgba(16, 185, 129, 0.2);
|
background: rgba(16, 185, 129, 0.2);
|
||||||
transform: translateY(-2px);
|
transform: translateY(-2px);
|
||||||
}
|
}
|
||||||
|
|
||||||
.category, .categories {
|
.category, .categories {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
gap: 0.5rem;
|
gap: 0.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.category {
|
.category {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
padding: 0.5rem 1rem;
|
padding: 0.5rem 1rem;
|
||||||
|
@ -435,27 +372,41 @@ const { Content } = await post.render();
|
||||||
transition: all 0.3s ease;
|
transition: all 0.3s ease;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.category:hover {
|
.category:hover {
|
||||||
transform: translateY(-2px);
|
transform: translateY(-2px);
|
||||||
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
|
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Author Card */
|
||||||
|
.author-card {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.author-name {
|
||||||
|
font-weight: 600;
|
||||||
|
margin-top: 0.5rem;
|
||||||
|
color: var(--text-primary);
|
||||||
|
}
|
||||||
|
|
||||||
/* Related Posts */
|
/* Related Posts */
|
||||||
.related-posts {
|
.related-posts {
|
||||||
list-style: none;
|
list-style: none;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.related-posts li {
|
.related-posts li {
|
||||||
margin-bottom: 1rem;
|
margin-bottom: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.related-posts li:last-child {
|
.related-posts li:last-child {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.related-post {
|
.related-post {
|
||||||
display: block;
|
display: block;
|
||||||
padding: 0.75rem;
|
padding: 0.75rem;
|
||||||
|
@ -464,20 +415,20 @@ const { Content } = await post.render();
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
transition: all 0.2s ease;
|
transition: all 0.2s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
.related-post:hover {
|
.related-post:hover {
|
||||||
background: rgba(6, 182, 212, 0.05);
|
background: rgba(6, 182, 212, 0.05);
|
||||||
border-color: var(--accent-primary);
|
border-color: var(--accent-primary);
|
||||||
transform: translateY(-2px);
|
transform: translateY(-2px);
|
||||||
}
|
}
|
||||||
|
|
||||||
.related-post-title {
|
.related-post-title {
|
||||||
color: var(--text-primary);
|
color: var(--text-primary);
|
||||||
font-size: 0.9rem;
|
font-size: 0.9rem;
|
||||||
margin-bottom: 0.5rem;
|
margin-bottom: 0.5rem;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
}
|
}
|
||||||
|
|
||||||
.related-post-meta {
|
.related-post-meta {
|
||||||
font-size: 0.75rem;
|
font-size: 0.75rem;
|
||||||
color: var(--text-tertiary);
|
color: var(--text-tertiary);
|
||||||
|
@ -490,7 +441,7 @@ const { Content } = await post.render();
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.back-to-blog {
|
.back-to-blog {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
@ -504,57 +455,57 @@ const { Content } = await post.render();
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
transition: all 0.2s ease;
|
transition: all 0.2s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
.back-to-blog:hover {
|
.back-to-blog:hover {
|
||||||
border-color: var(--accent-primary);
|
border-color: var(--accent-primary);
|
||||||
background: var(--bg-tertiary);
|
background: var(--bg-tertiary);
|
||||||
transform: translateY(-2px);
|
transform: translateY(-2px);
|
||||||
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
|
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Content Styling */
|
/* Content Styling */
|
||||||
.post-body {
|
.post-body {
|
||||||
font-size: 1.05rem;
|
font-size: 1.05rem;
|
||||||
line-height: 1.7;
|
line-height: 1.7;
|
||||||
color: var(--text-primary);
|
color: var(--text-primary);
|
||||||
}
|
}
|
||||||
|
|
||||||
.post-body h2 {
|
.post-body h2 {
|
||||||
font-size: 1.8rem;
|
font-size: 1.8rem;
|
||||||
margin: 2rem 0 1rem;
|
margin: 2rem 0 1rem;
|
||||||
color: var(--text-primary);
|
color: var(--text-primary);
|
||||||
}
|
}
|
||||||
|
|
||||||
.post-body h3 {
|
.post-body h3 {
|
||||||
font-size: 1.4rem;
|
font-size: 1.4rem;
|
||||||
margin: 1.75rem 0 0.75rem;
|
margin: 1.75rem 0 0.75rem;
|
||||||
color: var(--text-primary);
|
color: var(--text-primary);
|
||||||
}
|
}
|
||||||
|
|
||||||
.post-body p {
|
.post-body p {
|
||||||
margin-bottom: 1.25rem;
|
margin-bottom: 1.25rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.post-body a {
|
.post-body a {
|
||||||
color: var(--accent-primary);
|
color: var(--accent-primary);
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
border-bottom: 1px dashed var(--accent-primary);
|
border-bottom: 1px dashed var(--accent-primary);
|
||||||
transition: all 0.2s ease;
|
transition: all 0.2s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
.post-body a:hover {
|
.post-body a:hover {
|
||||||
color: var(--accent-secondary);
|
color: var(--accent-secondary);
|
||||||
border-bottom-style: solid;
|
border-bottom-style: solid;
|
||||||
}
|
}
|
||||||
|
|
||||||
.post-body ul, .post-body ol {
|
.post-body ul, .post-body ol {
|
||||||
margin: 1rem 0 1.5rem 1.5rem;
|
margin: 1rem 0 1.5rem 1.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.post-body li {
|
.post-body li {
|
||||||
margin-bottom: 0.5rem;
|
margin-bottom: 0.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.post-body blockquote {
|
.post-body blockquote {
|
||||||
margin: 1.5rem 0;
|
margin: 1.5rem 0;
|
||||||
padding: 1rem 1.5rem;
|
padding: 1rem 1.5rem;
|
||||||
|
@ -564,7 +515,7 @@ const { Content } = await post.render();
|
||||||
color: var(--text-secondary);
|
color: var(--text-secondary);
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
.post-body code {
|
.post-body code {
|
||||||
font-family: var(--font-mono);
|
font-family: var(--font-mono);
|
||||||
background: rgba(15, 23, 42, 0.3);
|
background: rgba(15, 23, 42, 0.3);
|
||||||
|
@ -572,7 +523,7 @@ const { Content } = await post.render();
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
font-size: 0.9em;
|
font-size: 0.9em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.post-body pre {
|
.post-body pre {
|
||||||
background: rgba(15, 23, 42, 0.3);
|
background: rgba(15, 23, 42, 0.3);
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
|
@ -581,54 +532,54 @@ const { Content } = await post.render();
|
||||||
margin: 1.5rem 0;
|
margin: 1.5rem 0;
|
||||||
border: 1px solid var(--border-primary);
|
border: 1px solid var(--border-primary);
|
||||||
}
|
}
|
||||||
|
|
||||||
.post-body pre code {
|
.post-body pre code {
|
||||||
background: transparent;
|
background: transparent;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
font-size: 0.9em;
|
font-size: 0.9em;
|
||||||
color: var(--text-primary);
|
color: var(--text-primary);
|
||||||
}
|
}
|
||||||
|
|
||||||
.post-body img {
|
.post-body img {
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
height: auto;
|
height: auto;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
margin: 1.5rem 0;
|
margin: 1.5rem 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.post-body table {
|
.post-body table {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
border-collapse: collapse;
|
border-collapse: collapse;
|
||||||
margin: 1.5rem 0;
|
margin: 1.5rem 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.post-body th, .post-body td {
|
.post-body th, .post-body td {
|
||||||
border: 1px solid var(--border-primary);
|
border: 1px solid var(--border-primary);
|
||||||
padding: 0.75rem;
|
padding: 0.75rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.post-body th {
|
.post-body th {
|
||||||
background: rgba(15, 23, 42, 0.3);
|
background: rgba(15, 23, 42, 0.3);
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Responsive Adjustments */
|
/* Responsive Adjustments */
|
||||||
@media (max-width: 1024px) {
|
@media (max-width: 1024px) {
|
||||||
.post-header h1 {
|
.post-header h1 {
|
||||||
font-size: var(--font-size-3xl, 1.875rem);
|
font-size: var(--font-size-3xl, 1.875rem);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 768px) {
|
@media (max-width: 768px) {
|
||||||
.post-content {
|
.post-content {
|
||||||
grid-template-columns: 1fr;
|
grid-template-columns: 1fr;
|
||||||
}
|
}
|
||||||
|
|
||||||
.post-header h1 {
|
.post-header h1 {
|
||||||
font-size: var(--font-size-2xl, 1.5rem);
|
font-size: var(--font-size-2xl, 1.5rem);
|
||||||
}
|
}
|
||||||
|
|
||||||
.post-body {
|
.post-body {
|
||||||
padding: 1.5rem;
|
padding: 1.5rem;
|
||||||
}
|
}
|
||||||
|
@ -644,7 +595,7 @@ const { Content } = await post.render();
|
||||||
// Already links, no need for additional JS
|
// Already links, no need for additional JS
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
// Add scroll-to-top button when scrolling down
|
// Add scroll-to-top button when scrolling down
|
||||||
const scrollToTop = document.createElement('button');
|
const scrollToTop = document.createElement('button');
|
||||||
scrollToTop.className = 'scroll-to-top';
|
scrollToTop.className = 'scroll-to-top';
|
||||||
|
@ -654,7 +605,7 @@ const { Content } = await post.render();
|
||||||
</svg>
|
</svg>
|
||||||
`;
|
`;
|
||||||
document.body.appendChild(scrollToTop);
|
document.body.appendChild(scrollToTop);
|
||||||
|
|
||||||
// Show/hide scroll-to-top button
|
// Show/hide scroll-to-top button
|
||||||
window.addEventListener('scroll', () => {
|
window.addEventListener('scroll', () => {
|
||||||
if (window.scrollY > 500) {
|
if (window.scrollY > 500) {
|
||||||
|
@ -663,7 +614,7 @@ const { Content } = await post.render();
|
||||||
scrollToTop.classList.remove('visible');
|
scrollToTop.classList.remove('visible');
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
// Scroll to top when clicked
|
// Scroll to top when clicked
|
||||||
scrollToTop.addEventListener('click', () => {
|
scrollToTop.addEventListener('click', () => {
|
||||||
window.scrollTo({
|
window.scrollTo({
|
||||||
|
@ -697,18 +648,18 @@ const { Content } = await post.render();
|
||||||
transform: translateY(20px);
|
transform: translateY(20px);
|
||||||
z-index: 100;
|
z-index: 100;
|
||||||
}
|
}
|
||||||
|
|
||||||
.scroll-to-top.visible {
|
.scroll-to-top.visible {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
visibility: visible;
|
visibility: visible;
|
||||||
transform: translateY(0);
|
transform: translateY(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
.scroll-to-top:hover {
|
.scroll-to-top:hover {
|
||||||
transform: translateY(-5px);
|
transform: translateY(-5px);
|
||||||
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
|
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 768px) {
|
@media (max-width: 768px) {
|
||||||
.scroll-to-top {
|
.scroll-to-top {
|
||||||
width: 40px;
|
width: 40px;
|
||||||
|
@ -716,7 +667,7 @@ const { Content } = await post.render();
|
||||||
bottom: 20px;
|
bottom: 20px;
|
||||||
right: 20px;
|
right: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.scroll-to-top svg {
|
.scroll-to-top svg {
|
||||||
width: 20px;
|
width: 20px;
|
||||||
height: 20px;
|
height: 20px;
|
||||||
|
|
Loading…
Reference in New Issue