this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Change how config timing works

+6 -10
+2 -3
src/components/blog/Post.astro
··· 49 49 .join("\n")} 50 50 51 51 --timing: ${ 52 - blog.post.timing.scale + 53 - Math.random() * blog.post.timing.leeway - 54 - blog.post.timing.leeway / 2 52 + blog.post.timing[0] + 53 + Math.random() * (blog.post.timing[1] - blog.post.timing[0]) 55 54 }s; 56 55 57 56 /* config */
+4 -7
src/config.ts
··· 1 1 export const blog = { 2 2 post: { 3 - yLeeway: 5, 4 3 width: 30, 5 - yGap: 10, 6 4 xPadding: 15, 5 + yLeeway: 5, 6 + yGap: 10, 7 7 drift: [0.1, 1], 8 - timing: { 9 - scale: 15, 10 - leeway: 5, 11 - }, 8 + timing: [10, 20], 12 9 }, 13 10 background: { 14 11 parallax: { ··· 18 15 count: 8, 19 16 width: [40, 80], 20 17 height: [15, 30], 21 - yGap: [15, 25] 18 + yGap: [15, 25], 22 19 }, 23 20 }, 24 21 };