mirror of
https://github.com/hzrd149/nostrudel.git
synced 2025-09-19 03:51:34 +02:00
small css fixes
This commit is contained in:
@@ -44,7 +44,7 @@ function ArticlePage({ article }: { article: NostrEvent }) {
|
||||
</Box>
|
||||
{image && <Image src={image} maxW="6xl" w="full" mx="auto" maxH="60vh" />}
|
||||
<Box mx="auto" maxW="4xl" w="full">
|
||||
<ZapBubbles event={article} />
|
||||
<ZapBubbles event={article} mb="2" />
|
||||
<Flex gap="2">
|
||||
<NoteZapButton event={article} size="sm" variant="ghost" showEventPreview={false} />
|
||||
<NoteReactions event={article} size="sm" variant="ghost" />
|
||||
|
@@ -38,7 +38,7 @@ function ArticlesHomePage() {
|
||||
|
||||
const timeline = useTimelineLoader(`${listId ?? "global"}-articles`, relays, query, { eventFilter });
|
||||
|
||||
const articles = useSubject(timeline.timeline).filter((article) => !!getArticleTitle(article));
|
||||
const articles = useSubject(timeline.timeline).filter((article) => !!getArticleTitle(article) && !!article.content);
|
||||
const callback = useTimelineCurserIntersectionCallback(timeline);
|
||||
|
||||
return (
|
||||
|
Reference in New Issue
Block a user