@dreamcommerce/aurora 3.1.32-1 → 3.1.32
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/build/cjs/packages/aurora/src/components/modal/components/modal/modal_content.js +4 -2
- package/build/cjs/packages/aurora/src/components/modal/components/modal/modal_content.js.map +1 -1
- package/build/cjs/packages/aurora/src/components/modal/modal_variants.js +1 -1
- package/build/cjs/packages/aurora/tailwind.config.js +4 -4
- package/build/esm/packages/aurora/src/components/modal/components/modal/modal_content.js +4 -2
- package/build/esm/packages/aurora/src/components/modal/components/modal/modal_content.js.map +1 -1
- package/build/esm/packages/aurora/src/components/modal/modal_variants.js +1 -1
- package/build/esm/packages/aurora/tailwind.config.js +4 -4
- package/build/index.css +1 -1
- package/build/tailwind.config.js +4 -4
- package/package.json +1 -1
package/build/tailwind.config.js
CHANGED
|
@@ -394,12 +394,12 @@ module.exports = {
|
|
|
394
394
|
to: { opacity: '0' }
|
|
395
395
|
},
|
|
396
396
|
'modal-slide-in': {
|
|
397
|
-
from: { opacity: '0', transform: '
|
|
398
|
-
to: { opacity: '1', transform: '
|
|
397
|
+
from: { opacity: '0', transform: 'translateY(-20vh)' },
|
|
398
|
+
to: { opacity: '1', transform: 'translateY(0%)' }
|
|
399
399
|
},
|
|
400
400
|
'modal-slide-out': {
|
|
401
|
-
from: { opacity: '1', transform: '
|
|
402
|
-
to: { opacity: '0', transform: '
|
|
401
|
+
from: { opacity: '1', transform: 'translateY(0%)' },
|
|
402
|
+
to: { opacity: '0', transform: 'translateY(-20vh)' }
|
|
403
403
|
},
|
|
404
404
|
'toast-slide-in-from-right': {
|
|
405
405
|
from: { transform: 'translateX(calc(100% + var(--a-toast-viewport-padding)))' },
|