Skip to content
Snippets Groups Projects

Added styles extracted from reForis.

Merged Maciej Lenartowicz requested to merge css-refactoring into dev
Viewing commit 85e42980
Show latest version
6 files
+ 53
2
Preferences
Compare changes
Files
6
+ 15
0
@keyframes modalFade {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.modal.show {
display: block;
animation-name: modalFade;
animation-duration: .3s;
background: rgba(0, 0, 0, 0.2);
}