8 lines
238 B
CSS
8 lines
238 B
CSS
/*
|
|
* FLOW UTILITY
|
|
* Like the Every Layout stack: https://every-layout.dev/layouts/stack/
|
|
* Info about this implementation: https://piccalil.li/quick-tip/flow-utility/
|
|
*/
|
|
.flow > * + * {
|
|
margin-block-start: var(--flow-space, 1em);
|
|
}
|