mirror of
https://github.com/Max-Stevenson/jurassic-park-interface.git
synced 2024-11-03 01:09:33 +00:00
26 lines
458 B
SCSS
26 lines
458 B
SCSS
#trash-icon-wrapper {
|
|
position: relative;
|
|
}
|
|
|
|
.modal-container {
|
|
position: fixed;
|
|
width: 0;
|
|
height: 0;
|
|
background-color: #797979;
|
|
}
|
|
|
|
.modal-inactive {
|
|
width: 0px;
|
|
height: 0px;
|
|
transform-origin: bottom right;
|
|
transform: translate(600px, 500px);
|
|
transition: all 500ms linear 0s;
|
|
}
|
|
|
|
.modal-active {
|
|
width: 500px;
|
|
height: 200px;
|
|
transform-origin: bottom right;
|
|
transform: translate(-600px, -500px);
|
|
transition: all 500ms linear 0s;
|
|
} |