Skip to content

Commit

Permalink
Tweak figures page
Browse files Browse the repository at this point in the history
  • Loading branch information
petebachant committed Aug 22, 2024
1 parent c90a390 commit fb94ee4
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,12 @@ function ProjectFiguresView() {
<Box>
{figures?.map((figure) => (
<Box key={figure.title}>
<Heading size="md">{figure.title}</Heading>
<Code>{figure.path}</Code>
<Heading size="md" mb={2}>
{figure.title}
</Heading>
<Text>{figure.description}</Text>
{figure.path.endsWith(".pdf") && figure.url ? (
<Box height="525px" width="630px" my={3}>
<Box height="530px" width="635px" my={3}>
<embed
height="100%"
width="100%"
Expand Down

0 comments on commit fb94ee4

Please sign in to comment.