Animation pop-up window

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
Valentin Popov 2018-05-31 04:47:51 +04:00
parent d64b84db0a
commit 8156027eaa
Signed by: Valentin Popov
GPG Key ID: 269A00ACA90A8EA3

19
_scss/_animate.scss Normal file
View File

@ -0,0 +1,19 @@
@import 'utilities/keyframes';
@include keyframes(fadeIn) {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@include keyframes(fadeOut) {
from {
opacity: 1;
}
to {
opacity: 0;
}
}