Skip to content

Commit

Permalink
fix: added cursor to show clickable
Browse files Browse the repository at this point in the history
  • Loading branch information
Agill-Sheron committed Mar 4, 2024
1 parent c92c790 commit f699666
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/pages/projectView/projectMainBody/sections/Header.tsx
Expand Up @@ -90,7 +90,7 @@ export const Header = forwardRef<HTMLDivElement>((_, ref) => {

return (
<>
<Modal isOpen={isOpen} onClose={onClose} isCentered>
<Modal isOpen={isOpen} onClose={onClose}>
<ModalOverlay />
<ModalContent padding="0" minWidth="0">
<img src={toLargeImageUrl(project.thumbnailImage || '')} alt={project.title} />
Expand All @@ -116,6 +116,7 @@ export const Header = forwardRef<HTMLDivElement>((_, ref) => {
maxHeight="80px"
alignSelf={'start'}
onClick={onOpen}
cursor={'pointer'}
/>
<Text flex={1} variant="h2" width="100%" color="neutral.900">
{project.title}
Expand Down

0 comments on commit f699666

Please sign in to comment.