mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-25 00:07:47 +01:00
9 lines
247 B
TypeScript
9 lines
247 B
TypeScript
|
import { styled } from '@mui/material';
|
||
|
|
||
|
export const StyledCardsGrid = styled('div')(({ theme }) => ({
|
||
|
gridTemplateColumns: 'repeat(auto-fit, minmax(350px, 1fr))',
|
||
|
gridAutoRows: '1fr',
|
||
|
gap: theme.spacing(2),
|
||
|
display: 'grid',
|
||
|
}));
|