viewy 2.0.6

A web UI toolkit that combine the advantages of a design system and an ui library.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
.table-of-contents {
  display: flex;
  flex-direction: column;
  gap: scale(3);

  &__item {
    padding: sp(8) sp(16);
    border-radius: sp($border-radius / 2);
    &.active {
      background: var(--color-accent);
      color: var(--color-on-accent);
    }
  }
}