52 lines
1.2 KiB
JavaScript
52 lines
1.2 KiB
JavaScript
|
|
import { ThemeProvider, createTheme } from '@mui/system';
|
||
|
|
import Box from '@mui/system/Box';
|
||
|
|
import Grid from '@mui/system/Grid';
|
||
|
|
import styled from '@mui/system/styled';
|
||
|
|
|
||
|
|
const Item = styled('div')(({ theme }) => ({
|
||
|
|
backgroundColor: '#fff',
|
||
|
|
border: '1px solid',
|
||
|
|
borderColor: '#ced7e0',
|
||
|
|
padding: theme.spacing(1),
|
||
|
|
borderRadius: '4px',
|
||
|
|
textAlign: 'center',
|
||
|
|
...theme.applyStyles('dark', {
|
||
|
|
backgroundColor: '#1A2027',
|
||
|
|
borderColor: '#444d58',
|
||
|
|
}),
|
||
|
|
}));
|
||
|
|
|
||
|
|
export default function CustomBreakpointsGrid() {
|
||
|
|
return (
|
||
|
|
<ThemeProvider
|
||
|
|
theme={createTheme({
|
||
|
|
breakpoints: {
|
||
|
|
values: {
|
||
|
|
laptop: 1024,
|
||
|
|
tablet: 640,
|
||
|
|
mobile: 0,
|
||
|
|
desktop: 1280,
|
||
|
|
},
|
||
|
|
},
|
||
|
|
})}
|
||
|
|
>
|
||
|
|
<Box sx={{ flexGrow: 1 }}>
|
||
|
|
<Grid container spacing={{ mobile: 1, tablet: 2, laptop: 3 }}>
|
||
|
|
{Array.from(Array(4)).map((_, index) => (
|
||
|
|
<Grid
|
||
|
|
key={index}
|
||
|
|
size={{
|
||
|
|
mobile: 6,
|
||
|
|
tablet: 4,
|
||
|
|
laptop: 3,
|
||
|
|
}}
|
||
|
|
>
|
||
|
|
<Item>{index + 1}</Item>
|
||
|
|
</Grid>
|
||
|
|
))}
|
||
|
|
</Grid>
|
||
|
|
</Box>
|
||
|
|
</ThemeProvider>
|
||
|
|
);
|
||
|
|
}
|