Personal Site
0
fork

Configure Feed

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

remove the height limit on mobile mode for the feed (will be at bottom anyway)

+6 -4
+6 -4
src/components/home/feeds/Feed.astro
··· 3 3 import { socials } from "/site-config"; 4 4 import { is, type ResourceUri } from "@atcute/lexicons"; 5 5 import { AppBskyFeedPost } from "@atcute/bluesky"; 6 - import Post, { type Author } from "./Post.astro"; 6 + import Post from "./Post.astro"; 7 + import type { Author } from "./post-types"; 7 8 import { client } from "./atproto"; 8 9 9 10 const { ok, data } = await client.get("app.bsky.feed.getAuthorFeed", { ··· 75 76 /* wrapper */ 76 77 .feed { 77 78 height: calc(100vh - 40px - 2rem * 1.5); 78 - @media (max-width: 90ch) { 79 - height: 600px; 80 - } 81 79 82 80 z-index: 0; 83 81 ··· 89 87 grid-area: contents; 90 88 overflow-y: auto; 91 89 height: 100%; 90 + 91 + @media (max-width: 90ch) { 92 + height: auto; 93 + } 92 94 } 93 95 94 96 ul {