RubyGems
npm
PyPI
Organizations
Log in
Sign up
npm
@4i/modal-manager
Versions diffs
1.1.9 → 1.1.10
@4i/modal-manager 1.1.9 → 1.1.10
Sign up to get
free
protection for your applications and to get access to all the features.
Files changed (2)
hide
show
package/package.json
+1
-1
package/src/styles.css
+3
-1
package/package.json
CHANGED
Viewed
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "@4i/modal-manager",
3
-
"version": "1.1.
9
",
3
+
"version": "1.1.
10
",
4
4
"description": "",
5
5
"main": "src/index.ts",
6
6
"scripts": {
package/src/styles.css
CHANGED
Viewed
@@ -27,10 +27,12 @@
27
27
28
28
@keyframes bg_scale_out {
29
29
from {
30
+
opacity: 1;
30
31
transform: scale(1);
31
32
}
32
33
to {
33
-
transform
:
scale(
0
.8)
;
34
+
opacity
: 0;
35
+
transform: scale(0.9);
34
36
}
35
37
}
36
38