about summary refs log tree commit diff stats
path: root/src/pages/components/Label.svelte
blob: 39930cd1a8fbd19dc2af138b4ebaada3509a9196 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<span>
  <slot></slot>
</span>

<style>
  span {
    font-size: 18px;
  }

  span :global(a) {
    color: var(--text);
    text-decoration: none;
  }

  span :global(a:hover) {
    text-decoration: underline;
  }
</style>