@deckio/deck-engine 0.2.1 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/styles/global.css +7 -1
package/package.json
CHANGED
package/styles/global.css
CHANGED
|
@@ -223,9 +223,11 @@ html, body, #root {
|
|
|
223
223
|
justify-content: center;
|
|
224
224
|
align-items: stretch;
|
|
225
225
|
opacity: 0;
|
|
226
|
+
visibility: hidden;
|
|
226
227
|
pointer-events: none;
|
|
227
228
|
transition: opacity var(--duration-slide) var(--ease-slide),
|
|
228
|
-
transform var(--duration-slide) var(--ease-slide)
|
|
229
|
+
transform var(--duration-slide) var(--ease-slide),
|
|
230
|
+
visibility 0s var(--duration-slide);
|
|
229
231
|
transform: translateX(60px);
|
|
230
232
|
overflow: hidden;
|
|
231
233
|
}
|
|
@@ -234,8 +236,12 @@ html, body, #root {
|
|
|
234
236
|
}
|
|
235
237
|
.slide.active {
|
|
236
238
|
opacity: 1;
|
|
239
|
+
visibility: visible;
|
|
237
240
|
pointer-events: auto;
|
|
238
241
|
transform: translateX(0);
|
|
242
|
+
transition: opacity var(--duration-slide) var(--ease-slide),
|
|
243
|
+
transform var(--duration-slide) var(--ease-slide),
|
|
244
|
+
visibility 0s 0s;
|
|
239
245
|
}
|
|
240
246
|
.slide.exit-left {
|
|
241
247
|
opacity: 0;
|