fix(questionList): Adjust the border color of the list-group-item to default

This commit is contained in:
haitao(lj) 2022-12-21 15:19:33 +08:00
parent 92d11dfa9e
commit 1692615d6d
1 changed files with 2 additions and 2 deletions

View File

@ -117,12 +117,12 @@ const QuestionList: FC<Props> = ({ source }) => {
i18nKeyPrefix="question"
/>
</div>
<ListGroup variant="flush" className="border-top border-bottom-0">
<ListGroup className="rounded-0">
{listData?.list?.map((li) => {
return (
<ListGroup.Item
key={li.id}
className="border-bottom bg-transparent py-3 px-0">
className="bg-transparent py-3 px-0 border-start-0 border-end-0">
<h5 className="text-wrap text-break">
<NavLink
to={pathFactory.questionLanding(li.id, li.url_title)}