mirror of
https://github.com/ente-io/ente.git
synced 2025-06-08 10:04:32 +00:00
13 lines
315 B
TypeScript
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;
|
|
`;
|