@fluido/ui-containers
Version:
A framework for create front-end easy and fast
14 lines (12 loc) • 351 B
JavaScript
import { makeNthChildSelector, styled } from '@fluido/ui';
import { Box } from '../box';
export const Stack_ = styled(Box, {
functions: { makeNthChildSelector },
}) `
display: flex;
flex-direction: column;
gap: #or(~$gap, $theme.spaces.xl);
& > :is(#func(makeNthChildSelector, $splitAfter, 1)) {
margin-top: auto;
}
`;