Skip to content

Commit be58125

Browse files
committed
Fix br tag, use hairline colour for border, remove unused classes
1 parent 4d052e8 commit be58125

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/components/overrides/TableOfContents.astro

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import FeedbackPrompt from "../FeedbackPrompt.tsx";
77
---
88

99
<Default {...Astro.props} />
10-
</br>
10+
<br />
1111
<FeedbackPrompt client:idle />
1212
{
1313
!Astro.url.pathname.startsWith("/support/") && (
@@ -17,15 +17,15 @@ import FeedbackPrompt from "../FeedbackPrompt.tsx";
1717
{Astro.props.editUrl && (
1818
<a
1919
href={Astro.props.editUrl}
20-
class="inline-flex h-8 items-center justify-center gap-2 rounded border border-gray-300 bg-white px-3 text-s font-small text-black hover:bg-gray-50"
20+
class="inline-flex h-8 items-center justify-center gap-2 rounded border border-[--sl-color-hairline] px-3 text-black"
2121
>
2222
<Icon name="pencil" />
2323
Edit
2424
</a>
2525
)}
2626
<a
2727
href="https://github.com/cloudflare/cloudflare-docs/issues/new/choose"
28-
class="inline-flex h-8 items-center justify-center gap-2 rounded border border-gray-300 bg-white px-3 text-s font-small text-black hover:bg-gray-50"
28+
class="inline-flex h-8 items-center justify-center gap-2 rounded border border-[--sl-color-hairline] px-3 text-black"
2929
>
3030
<Icon name="github" />
3131
Issue

0 commit comments

Comments
 (0)