We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4be3a68 commit d114147Copy full SHA for d114147
1 file changed
ui/src/components/PinList/index.tsx
@@ -45,14 +45,14 @@ const PinList: FC<IProps> = ({ data }) => {
45
action
46
as="li"
47
key={item.id}
48
- className="rounded border-top p-0"
+ className="border-0 p-0"
49
style={{
50
minWidth: '238px',
51
width: `${100 / data.length}%`,
52
}}>
53
<NavLink
54
to={pathFactory.questionLanding(item.id, item.url_title)}
55
- className="h-100 d-flex flex-column justify-content-between p-3">
+ className="border rounded h-100 d-flex flex-column justify-content-between p-3">
56
<h6 className="text-wrap link-dark text-break text-truncate-2">
57
{item.title}
58
{item.status === 2 ? ` [${t('closed')}]` : ''}
0 commit comments