aboutsummaryrefslogtreecommitdiff
path: root/web/pw-server/src/routes/docs/doc.svelte
blob: ed08270c3081a7ba3edb538b6fc0edd62a423426 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<div class="container">
  <slot />
</div>

<style scoped lang="scss">
  @use "src/styles/variables";
  .container {
    max-width: 800px;
    color: rgb(36, 41, 47);
  }

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