import { styled } from 'stitches.config' export const Grid = styled('div', { display: 'grid', variants: { align: { start: { alignItems: 'start', }, center: { alignItems: 'center', }, end: { alignItems: 'end', }, stretch: { alignItems: 'stretch', }, baseline: { alignItems: 'baseline', }, }, justify: { start: { justifyContent: 'start', }, center: { justifyContent: 'center', }, end: { justifyContent: 'end', }, between: { justifyContent: 'space-between', }, }, flow: { row: { gridAutoFlow: 'row', }, column: { gridAutoFlow: 'column', }, dense: { gridAutoFlow: 'dense', }, rowDense: { gridAutoFlow: 'row dense', }, columnDense: { gridAutoFlow: 'column dense', }, }, }, })