Skip to content

Commit

Permalink
Minor update for styling
Browse files Browse the repository at this point in the history
  • Loading branch information
hannyle committed May 31, 2022
1 parent 42818c3 commit 58c065f
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -347,12 +347,13 @@ const DisplayDescription = ({ description, children }: { description: string; ch
setIsReadMore(!isReadMore)
}

const ReadmoreText = styled("span")(() => ({
const ReadmoreText = styled("span")(({ theme }) => ({
fontWeight: 700,
textDecoration: "underline",
display: "block",
marginTop: "0.5rem",
color: "#006778",
color: theme.palette.primary.main,
"&:hover": { cursor: "pointer" },
}))

return (
Expand Down

0 comments on commit 58c065f

Please sign in to comment.