ntfy/web/src/components/styles.js
Philipp Heckel f9219d2d96 Attachments
2022-03-03 14:51:56 -05:00

18 lines
474 B
JavaScript

import Typography from "@mui/material/Typography";
import theme from "./theme";
import Container from "@mui/material/Container";
import {styled} from "@mui/material";
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.text.primary
});