1
0
mirror of https://github.com/chinchang/web-maker.git synced 2025-05-09 20:05:22 +02:00

style: fix modal transitions

This commit is contained in:
Kushagra Gour 2018-01-13 09:39:59 +05:30
parent a01c5d0adc
commit d6546d35e7

View File

@ -473,7 +473,8 @@ transition: 0.25s ease;
max-height: 90vh;
box-sizing: border-box;
overflow-y: auto;
transition: all 0.19s;
transition-property: transform, opacity;
transition-duration: 0.19s;
transform: translateY(-50px) scale(0.7);
}
.is-modal-visible {
@ -495,13 +496,13 @@ transition: 0.25s ease;
opacity: 0;
will-change: opacity;
background: rgba(0,0,0,0.6);
transition: all 0.3s;
transition: opacity 0.3s;
}
/* Make settings modal smaller */
@media screen and (min-width: 600px) {
.modal--settings {
/* width: 600px; */
/* margin-left: -300px; */
/* margin-lef.t: -300px; */
}
}
.saved-items-pane {