diff --git a/public/locales/zh-CN.json b/public/locales/zh-CN.json index ce4b2ca..fb01df5 100644 --- a/public/locales/zh-CN.json +++ b/public/locales/zh-CN.json @@ -1127,9 +1127,6 @@ "capital pool": "资金池", "Unclaimed income": "待领取收益", "pledge": "质押", -<<<<<<< HEAD + "Invite": "邀请", "top": "置顶" -======= - "Invite": "邀请" ->>>>>>> dev } diff --git a/src/views/Board/components/BoardCard/BoardCard.tsx b/src/views/Board/components/BoardCard/BoardCard.tsx index 452ca0c..e7c2e01 100644 --- a/src/views/Board/components/BoardCard/BoardCard.tsx +++ b/src/views/Board/components/BoardCard/BoardCard.tsx @@ -85,6 +85,9 @@ const CardDiv = styled.div` flex-direction: column; justify-content: space-around; ` +const ContentDiv = styled.div` + padding: 0 20px; +` interface NodeCardProps { board: any @@ -123,18 +126,20 @@ const BoardCard: React.FC = ({ board, account }) => { return ( - {account && ( -
- - {board.userData?.name === 'Board' ? ( - - ) : ( - '' - )} - -
- )} - + + {account && ( +
+ + {board.userData?.name === 'Board' ? ( + + ) : ( + '' + )} + +
+ )} + +
{/* setShowExpandableSection(!showExpandableSection)}