diff --git a/ui/src/components/PinList/index.tsx b/ui/src/components/PinList/index.tsx index 7907b462..08f1813d 100644 --- a/ui/src/components/PinList/index.tsx +++ b/ui/src/components/PinList/index.tsx @@ -45,14 +45,14 @@ const PinList: FC = ({ data }) => { action as="li" key={item.id} - className="rounded border-top p-3" + className="rounded border-top p-0" style={{ minWidth: '238px', width: `${100 / data.length}%`, }}> + className="h-100 d-flex flex-column justify-content-between p-3">
{item.title} {item.status === 2 ? ` [${t('closed')}]` : ''} diff --git a/ui/src/components/QuestionList/index.tsx b/ui/src/components/QuestionList/index.tsx index 5361e1fe..cf1de562 100644 --- a/ui/src/components/QuestionList/index.tsx +++ b/ui/src/components/QuestionList/index.tsx @@ -144,6 +144,7 @@ const QuestionList: FC = ({ handleNavigate( pathFactory.questionLanding(li.id, li.url_title), @@ -191,7 +192,9 @@ const QuestionList: FC = ({ return ( );