2022-02-28 17:52:50 +01:00
|
|
|
import Typography from "@mui/material/Typography";
|
|
|
|
import theme from "./theme";
|
|
|
|
import Container from "@mui/material/Container";
|
2022-03-02 03:23:12 +01:00
|
|
|
import {styled} from "@mui/material";
|
2022-02-25 22:07:25 +01:00
|
|
|
|
2022-02-28 17:52:50 +01:00
|
|
|
export const Paragraph = styled(Typography)({
|
|
|
|
paddingTop: 8,
|
|
|
|
paddingBottom: 8,
|
|
|
|
});
|
|
|
|
|
|
|
|
export const VerticallyCenteredContainer = styled(Container)({
|
|
|
|
display: 'flex',
|
|
|
|
flexGrow: 1,
|
|
|
|
flexDirection: 'column',
|
|
|
|
justifyContent: 'center',
|
|
|
|
alignContent: 'center',
|
|
|
|
color: theme.palette.body.main
|
|
|
|
});
|