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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
596 B
JavaScript
Raw Normal View History

import Typography from "@mui/material/Typography";
import Container from "@mui/material/Container";
2022-03-04 02:28:16 +01:00
import { Backdrop, styled } from "@mui/material";
import theme from "./theme";
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,
});
2022-03-04 02:28:16 +01:00
export const LightboxBackdrop = styled(Backdrop)({
backgroundColor: "rgba(0, 0, 0, 0.8)", // was: 0.5
});