src/components/TableOfContentsHeading.astro (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
--- import Link from './Link.astro' import type { Heading } from './TableOfContents.astro' const { heading } = Astro.props --- <li class="mr-2 list-inside list-disc px-6 py-1.5 text-sm text-foreground/60 xl:list-none xl:p-0" > <Link href={'#' + heading.slug} class="toc-link underline decoration-transparent underline-offset-[3px] transition-colors duration-200 hover:decoration-inherit" > {heading.text} </Link> { heading.subheadings.length > 0 && ( <ul class="translate-x-3 xl:ml-4 xl:mt-2 xl:translate-x-0 xl:space-y-2"> {heading.subheadings.map((subheading: Heading) => ( <Astro.self heading={subheading} /> ))} </ul> ) } </li> |