Skip to content

Commit

Permalink
new default images (ZcashFoundation#323)
Browse files Browse the repository at this point in the history
  • Loading branch information
skyl authored Aug 10, 2024
1 parent 0f07143 commit 1f7e473
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions ts/react/free2z/src/components/PageListRow2.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -323,9 +323,9 @@ export default function PageListRow(page: PageListRowProps) {
height: 0,
paddingTop: '56.25%', // 16:9
marginRight: "0.5em",
opacity: page.featured_image ? 1 : 0.1,
opacity: page.featured_image ? 1 : 0.25,
}}
image={page.featured_image?.thumbnail || "/2z-ai.png"}
image={page.featured_image?.thumbnail || "/docs/img/tuzi.svg"}
title={page.title}
/>
{/* </Suspense> */}
Expand Down
4 changes: 2 additions & 2 deletions ts/react/free2z/src/components/StoryRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -160,9 +160,9 @@ export default function StoryRow(props: Props) {
height: 0,
paddingTop: '56.25%', // 16:9
marginRight: "0.5em",
opacity: getFirstNonEmptyPageImage(story) ? 1 : 0.1,
opacity: getFirstNonEmptyPageImage(story) ? 1 : 0.25,
}}
image={getFirstNonEmptyPageImage(story) || "/2z-ai.png"}
image={getFirstNonEmptyPageImage(story) || "/docs/img/tuzi.svg"}
title={story.title}
/>
</Grid>
Expand Down

0 comments on commit 1f7e473

Please sign in to comment.