nuxt-glorious 1.2.2-5 → 1.2.2-6
Sign up to get free protection for your applications and to get access to all the features.
package/dist/module.json
CHANGED
@@ -31,27 +31,36 @@
|
|
31
31
|
.glorious-scaffold-modal.close {
|
32
32
|
@apply hidden;
|
33
33
|
}
|
34
|
+
.glorious-scaffold-modal.open {
|
35
|
+
animation: animationMobile 0.3s normal forwards;
|
36
|
+
}
|
34
37
|
@screen md {
|
35
38
|
.glorious-scaffold-modal.open {
|
36
|
-
animation: animationOpacity 0.
|
39
|
+
animation: animationOpacity 0.3s normal forwards;
|
37
40
|
}
|
38
41
|
}
|
39
|
-
.glorious-scaffold-modal.open {
|
40
|
-
animation: animationMobile 0.3s normal forwards;
|
41
|
-
}
|
42
42
|
@keyframes animationOpacity {
|
43
|
-
|
43
|
+
0% {
|
44
|
+
transform: scale(0.1);
|
44
45
|
opacity: 0;
|
45
46
|
}
|
46
|
-
|
47
|
+
99% {
|
48
|
+
transform: scale(1);
|
49
|
+
opacity: 1;
|
50
|
+
}
|
51
|
+
100% {
|
52
|
+
transform: unset;
|
47
53
|
opacity: 1;
|
48
54
|
}
|
49
55
|
}
|
50
56
|
@keyframes animationMobile {
|
51
|
-
|
57
|
+
0% {
|
52
58
|
transform: translateY(100%);
|
53
59
|
}
|
54
|
-
|
60
|
+
99% {
|
55
61
|
transform: translateY(0);
|
56
62
|
}
|
63
|
+
100% {
|
64
|
+
transform: unset;
|
65
|
+
}
|
57
66
|
}
|
@@ -153,28 +153,37 @@ watch(
|
|
153
153
|
.glorious-scaffold-modal.close {
|
154
154
|
@apply hidden;
|
155
155
|
}
|
156
|
+
.glorious-scaffold-modal.open {
|
157
|
+
animation: animationMobile 0.3s normal forwards;
|
158
|
+
}
|
156
159
|
@screen md {
|
157
160
|
.glorious-scaffold-modal.open {
|
158
|
-
animation: animationOpacity 0.
|
161
|
+
animation: animationOpacity 0.3s normal forwards;
|
159
162
|
}
|
160
163
|
}
|
161
|
-
.glorious-scaffold-modal.open {
|
162
|
-
animation: animationMobile 0.3s normal forwards;
|
163
|
-
}
|
164
164
|
@keyframes animationOpacity {
|
165
|
-
|
165
|
+
0% {
|
166
|
+
transform: scale(0.1);
|
166
167
|
opacity: 0;
|
167
168
|
}
|
168
|
-
|
169
|
+
99% {
|
170
|
+
transform: scale(1);
|
171
|
+
opacity: 1;
|
172
|
+
}
|
173
|
+
100% {
|
174
|
+
transform: unset;
|
169
175
|
opacity: 1;
|
170
176
|
}
|
171
177
|
}
|
172
178
|
@keyframes animationMobile {
|
173
|
-
|
179
|
+
0% {
|
174
180
|
transform: translateY(100%);
|
175
181
|
}
|
176
|
-
|
182
|
+
99% {
|
177
183
|
transform: translateY(0);
|
178
184
|
}
|
185
|
+
100% {
|
186
|
+
transform: unset;
|
187
|
+
}
|
179
188
|
}
|
180
189
|
</style>
|
package/package.json
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
{
|
2
|
-
"version": "1.2.2-
|
2
|
+
"version": "1.2.2-6",
|
3
3
|
"name": "nuxt-glorious",
|
4
4
|
"description": "This package provides many things needed by a project, including server requests and authentication, SEO and other requirements of a project.",
|
5
5
|
"repository": "sajadhzj/nuxt-glorious",
|