You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CardContainer.tsx 567B

123456789101112131415161718192021222324
  1. import { Box } from '@mui/system';
  2. const CardContainer = ({ children }) => {
  3. return (
  4. <Box
  5. sx={{
  6. ml: { md: 2 },
  7. mt: { xs: 5, md: 0 },
  8. display: 'flex',
  9. flexDirection: {
  10. xs: 'column',
  11. sm: 'row',
  12. lg: 'column',
  13. },
  14. justifyContent: { sm: 'flex-start' },
  15. flexWrap: 'wrap',
  16. }}
  17. >
  18. {children}
  19. </Box>
  20. );
  21. };
  22. export default CardContainer;