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
15
16
17
18
.sortable-stack {
  counter-reset: sortable-stack-counter;
  &__item {
    .sortable-stack-counter-display {
      counter-increment: sortable-stack-counter;
    }
    &__handle {
      cursor: move;
      flex-grow: 0;
      color: var(--color-accent);
    }
  }
}

.sortable-stack-counter-display::before {
  display: inline;
  content: counter(sortable-stack-counter);
}