aboutsummaryrefslogtreecommitdiff
path: root/web/pw-server/src/lib/components/docs/TocEntry.svelte
blob: b28e7fd0b437de2d8ac5300568b42635d963c1c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<script lang="ts">
  export let href: string;
  export let text: string;
</script>

<div class="toc-entry">
  <a {href}>{text}</a>
</div>

<style scoped lang="scss">
  @use "src/styles/variables";

  .toc-entry {
    font-size: 16px;
    padding: 4px;
  }

  .toc-entry a {
    color: variables.$blue-primary;
  }
</style>