Manav Rathi c0a1b2daef
Center
2024-10-12 16:50:53 +05:30

13 lines
315 B
TypeScript

import { styled } from "@mui/material";
/**
* A flex child that fills the entire flex direction, and shows its children
* after centering them both vertically and horizontally.
*/
export const CenteredBox = styled("div")`
flex: 1;
display: flex;
justify-content: center;
align-items: center;
`;