Skip to content

Commit

Permalink
Fixed hover effect on post item
Browse files Browse the repository at this point in the history
  • Loading branch information
mbeps committed Feb 21, 2023
1 parent 6293711 commit c80430a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Posts/PostItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ const PostItem: React.FC<PostItemProps> = ({
border="1px solid"
bg="white"
// borderColor="gray.500"
borderColor={singlePostPage ? "white" : "gray.500"}
borderColor={singlePostPage ? "white" : "gray.300"}
borderRadius={singlePostPage ? "10px 10px 0px 0px" : "10px"}
_hover={{ borderColor: singlePostPage ? "none" : "gray.500" }}
cursor={singlePostPage ? "unset" : "pointer"}
Expand Down

0 comments on commit c80430a

Please sign in to comment.