about summary refs log tree commit diff stats
path: root/src/pages/components/Label.svelte
blob: d59b94366fc6095d44dc50b97989a19ed9fec18a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<span {...$$restProps}>
  <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>