From 74b523be23e2e852c743aab478efadb266b80555 Mon Sep 17 00:00:00 2001 From: developomp Date: Tue, 17 Aug 2021 09:27:53 +0900 Subject: [PATCH] fixed clickable area size --- source/src/components/PostCard.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/source/src/components/PostCard.tsx b/source/src/components/PostCard.tsx index be55f5f..a7e920c 100644 --- a/source/src/components/PostCard.tsx +++ b/source/src/components/PostCard.tsx @@ -72,12 +72,12 @@ interface PostCardProps { export default class PostCard extends React.Component { render() { return ( - - {this.props.postData?.title || "No title"} @@ -122,8 +122,8 @@ export default class PostCard extends React.Component { __html: this.props.postData.preview, }} /> - - + + ) } }