dce-reactkit 3.7.7 → 3.7.8
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/dist/cjs/index.js +2 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +2 -2
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/Modal.tsx +2 -2
package/package.json
CHANGED
package/src/components/Modal.tsx
CHANGED
|
@@ -421,7 +421,7 @@ const Modal: React.FC<Props> = (props) => {
|
|
|
421
421
|
// Render the modal
|
|
422
422
|
return (
|
|
423
423
|
<div
|
|
424
|
-
className="modal show
|
|
424
|
+
className="modal show"
|
|
425
425
|
tabIndex={-1}
|
|
426
426
|
style={{
|
|
427
427
|
zIndex: (
|
|
@@ -459,7 +459,7 @@ const Modal: React.FC<Props> = (props) => {
|
|
|
459
459
|
}}
|
|
460
460
|
/>
|
|
461
461
|
<div
|
|
462
|
-
className={`modal-dialog modal-${size} ${animationClass}`}
|
|
462
|
+
className={`modal-dialog modal-${size} ${animationClass} modal-dialog-scrollable modal-dialog-centered`}
|
|
463
463
|
style={{
|
|
464
464
|
zIndex: 5000000002,
|
|
465
465
|
}}
|