Skip to content

Commit cb4e962

Browse files
authored
fixing styling of toc pages (#23583)
1 parent e0c31e0 commit cb4e962

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

components/landing/TableOfContents.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export const TableOfContents = (props: Props) => {
3131
text: title,
3232
renderItem: () => (
3333
<ActionList.Item>
34-
<li key={href} className="f4 d-list-item width-full">
34+
<li key={href} className="f4 d-list-item width-full list-style-none">
3535
<Link className="d-block width-full" href={href}>
3636
{title}
3737
</Link>
@@ -48,7 +48,7 @@ export const TableOfContents = (props: Props) => {
4848
return null
4949
}
5050
return (
51-
<li key={childItem.fullPath} className="f4 d-block width-full">
51+
<li key={childItem.fullPath} className="f4 d-block width-full m-2">
5252
<Link className="d-block width-full" href={childItem.fullPath}>
5353
{childItem.title}
5454
</Link>

0 commit comments

Comments
 (0)