1
0
Fork 0
mirror of https://github.com/binwiederhier/ntfy.git synced 2024-09-28 19:31:59 +02:00
ntfy/web/src/components/styles.js

19 lines
474 B
JavaScript
Raw Normal View History

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',
2022-03-03 20:51:56 +01:00
color: theme.palette.text.primary
});