mirror of https://gitee.com/answerdev/answer.git
fix(questionList): Adjust the border color of the list-group-item to default
This commit is contained in:
parent
92d11dfa9e
commit
1692615d6d
|
@ -117,12 +117,12 @@ const QuestionList: FC<Props> = ({ source }) => {
|
||||||
i18nKeyPrefix="question"
|
i18nKeyPrefix="question"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<ListGroup variant="flush" className="border-top border-bottom-0">
|
<ListGroup className="rounded-0">
|
||||||
{listData?.list?.map((li) => {
|
{listData?.list?.map((li) => {
|
||||||
return (
|
return (
|
||||||
<ListGroup.Item
|
<ListGroup.Item
|
||||||
key={li.id}
|
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">
|
<h5 className="text-wrap text-break">
|
||||||
<NavLink
|
<NavLink
|
||||||
to={pathFactory.questionLanding(li.id, li.url_title)}
|
to={pathFactory.questionLanding(li.id, li.url_title)}
|
||||||
|
|
Loading…
Reference in New Issue