jurassic-park-interface/sass/components/_modal.scss
2020-06-10 16:17:33 +01:00

18 lines
320 B
SCSS

.modal-container {
position: fixed;
transform-origin: bottom right;
transform: translate(-400px, -250px) scale(1, 1);
// top: 30%;
// left: 20%;
z-index: 9999;
background-color: #797979;
width: 500px;
height: 200px;
transition-duration: 2s;
transition-property: transform;
}
.modal__active {
}