Skip to content

Commit 2a42188

Browse files
committed
update link position for article elements
1 parent b691da2 commit 2a42188

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/components/paper.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ export const Paper = ({ title, authors, link, abstract, number }) => {
2626
{title}
2727
</Box>
2828
<Box textAlign='left'>{authors}</Box>
29+
<Link textAlign='left' href={link} color='blue.500' isExternal>
30+
View paper
31+
</Link>
2932
<Box as='i' color='gray.500' textAlign='left'>
3033
Article #{number}
3134
</Box>
@@ -34,9 +37,6 @@ export const Paper = ({ title, authors, link, abstract, number }) => {
3437
</h2>
3538
<AccordionPanel pb={4}>
3639
<Text>{abstract}</Text>
37-
<Link href={link} color='blue.500' isExternal>
38-
View paper
39-
</Link>
4040
</AccordionPanel>
4141
</AccordionItem>
4242
)

0 commit comments

Comments
 (0)