This repository has been archived on 2025-09-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
repertory-ui/src/components/UI/Modal/Modal.css
Scott E. Graves a778b6dd25 Initial commit
2018-09-25 12:30:15 -05:00

20 lines
283 B
CSS

.Modal {
position: fixed;
left: 0;
top: 0;
width: 100vw;
height: 100vh;
background-color: rgba(0, 0, 0, 0.5);
z-index: 2000;
}
.Content {
position: fixed;
width: auto;
height: auto;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 2001;
}