All files / src/components/common/Modal ModalContent.tsx

100% Statements 1/1
100% Branches 0/0
100% Functions 0/0
100% Lines 1/1

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15    86x                        
import { DialogContent, styled } from "@mui/material";
 
const ModalContent = styled(DialogContent)({
  overflow: "auto",
  background:
    "linear-gradient(white, white),linear-gradient(white, white) 0 100%,linear-gradient(rgba(0, 0, 0, 0.07), white 70%)",
  backgroundRepeat: "no-repeat",
  backgroundColor: "white",
  backdropFilter: "blur(20px)",
  backgroundSize: "100% 40px, 100% 40px, 100% 14px, 100% 14px",
  backgroundAttachment: "local, local, scroll, scroll",
});
 
export default ModalContent;