.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);
}