Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 | 7x 7x | import { css, cssClass } from '../styled';
import { theme } from '../utils';
export const Grid = styleProps => cssClass`
display: grid;
${styleProps.autoFlow &&
css`
grid-auto-flow: ${styleProps.autoFlow};
`}
${styleProps.gap &&
css`
grid-gap: ${styleProps.gap};
`}
${styleProps.template &&
css`
grid-template: ${styleProps.template};
`}
${styleProps.templateAreas &&
css`
grid-template-areas: ${styleProps.templateAreas};
`}
${styleProps.templateColumns &&
css`
grid-template-columns: ${styleProps.templateColumns};
`}
${styleProps.templateRows &&
css`
grid-template-rows: ${styleProps.templateRows};
`}
${styleProps.autoColumns &&
css`
grid-auto-columns: ${styleProps.autoColumns};
`}
${styleProps.autoRows &&
css`
grid-auto-rows: ${styleProps.autoRows};
`}
& {
${theme(styleProps.themeKey, `css.root`)(styleProps)};
}
`;
export const GridItem = styleProps => cssClass`
display: grid-item;
${styleProps.area &&
css`
grid-area: ${styleProps.area};
`}
${styleProps.column &&
css`
grid-column: ${styleProps.column};
`}
${styleProps.row &&
css`
grid-row: ${styleProps.row};
`}
${styleProps.columnStart &&
css`
grid-column-start: ${styleProps.columnStart};
`}
${styleProps.columnEnd &&
css`
grid-column-end: ${styleProps.columnEnd};
`}
${styleProps.rowStart &&
css`
grid-row-start: ${styleProps.rowStart};
`}
${styleProps.rowEnd &&
css`
grid-row-end: ${styleProps.rowEnd};
`}
& {
${theme(styleProps.themeKey, `css.root`)(styleProps)};
}
`;
|