Files
automatisch/packages/web/src/components/NoResultFound/style.js
2024-02-29 09:38:32 +00:00

11 lines
314 B
JavaScript

import { styled } from '@mui/material/styles';
import MuiCardContent from '@mui/material/CardContent';
export const CardContent = styled(MuiCardContent)`
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
gap: ${({ theme }) => theme.spacing(2)};
min-height: 200px;
`;