1
0
Fork 0
va/assets/css/stack.css

16 lines
282 B
CSS
Raw Normal View History

2021-06-08 14:43:43 +00:00
.stack {
display: flex;
flex-direction: column;
justify-content: flex-start;
}
.stack:not(.stack_recursive) > *,
.stack.stack_recursive * {
margin-block: 0;
2021-06-08 14:43:43 +00:00
}
.stack:not(.stack_recursive) > * + *,
.stack.stack_recursive * + * {
margin-block-start: var(--stack-space);
2021-06-08 14:43:43 +00:00
}