scinote-web/app/javascript/src/styles/animations.scss

31 lines
629 B
SCSS
Raw Normal View History

.alert-animated-enter {
2017-10-03 17:14:47 +08:00
opacity: .01;
2017-09-29 02:07:11 +08:00
&.alert-animated-enter-active {
opacity: 1;
transition: opacity 150ms ease-in;
}
}
2017-09-29 02:07:11 +08:00
.alert-animated-exit {
opacity: 1;
padding-bottom: 15px;
padding-top: 15px;
margin-bottom: 20px;
height: 50px;
2017-09-29 02:07:11 +08:00
&.alert-animated-exit-active {
overflow: hidden;
2017-10-03 17:14:47 +08:00
opacity: .01;
2017-09-29 02:07:11 +08:00
padding-top: 0;
padding-bottom: 0;
margin-bottom: 0;
height: 0;
transition: opacity 300ms ease-in,
padding-top 500ms ease-in,
padding-bottom 500ms ease-in,
margin-bottom 500ms ease-in,
height 500ms ease-in;
}
}