We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0c31e0 commit cb4e962Copy full SHA for cb4e962
1 file changed
components/landing/TableOfContents.tsx
@@ -31,7 +31,7 @@ export const TableOfContents = (props: Props) => {
31
text: title,
32
renderItem: () => (
33
<ActionList.Item>
34
- <li key={href} className="f4 d-list-item width-full">
+ <li key={href} className="f4 d-list-item width-full list-style-none">
35
<Link className="d-block width-full" href={href}>
36
{title}
37
</Link>
@@ -48,7 +48,7 @@ export const TableOfContents = (props: Props) => {
48
return null
49
}
50
return (
51
- <li key={childItem.fullPath} className="f4 d-block width-full">
+ <li key={childItem.fullPath} className="f4 d-block width-full m-2">
52
<Link className="d-block width-full" href={childItem.fullPath}>
53
{childItem.title}
54
0 commit comments