this repo has no description
0
fork

Configure Feed

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

Fix z-index so it applies & remove unused imports

+3 -3
+3 -1
src/components/blog/post.astro
··· 23 23 border-radius: 2.5rem; 24 24 padding: 1rem; 25 25 display: block; 26 - box-shadow: 0 0 5rem #00000040; 26 + box-shadow: 0 0 7.5rem #00000080; 27 + 28 + position: relative; 27 29 z-index: var(--layer); 28 30 29 31 & > img {
-2
src/pages/blog/index.astro
··· 2 2 import Base from "@/layouts/base.astro"; 3 3 import Rss from "@/assets/rss.svg"; 4 4 import { getCollection } from "astro:content"; 5 - import { Image } from "astro:assets"; 6 5 import Post from "@/components/blog/post.astro"; 7 - console.log(Rss); 8 6 9 7 const posts = await getCollection("blog"); 10 8 ---