mirror of
https://git.um-react.app/um/um-react.git
synced 2025-11-28 11:33:02 +00:00
28 lines
505 B
TypeScript
28 lines
505 B
TypeScript
import { Grid, chakra } from '@chakra-ui/react';
|
|
|
|
export const FileRowResponsiveGrid = chakra(Grid, {
|
|
baseStyle: {
|
|
gridTemplateAreas: {
|
|
base: `
|
|
"cover"
|
|
"title"
|
|
"meta"
|
|
"action"
|
|
`,
|
|
md: `
|
|
"cover title action"
|
|
"cover meta action"
|
|
`,
|
|
},
|
|
gridTemplateRows: {
|
|
base: 'repeat(auto-fill)',
|
|
md: 'min-content 1fr',
|
|
},
|
|
gridTemplateColumns: {
|
|
base: '1fr',
|
|
md: '160px 1fr',
|
|
},
|
|
gap: 3,
|
|
},
|
|
});
|