dce-reactkit 3.8.0 → 3.8.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/dist/cjs/index.js +6 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/stylesheets/shared.css.d.ts +1 -1
- package/dist/esm/index.js +6 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/stylesheets/shared.css.d.ts +1 -1
- package/package.json +1 -1
- package/src/components/Modal/index.tsx +1 -1
- package/src/stylesheets/shared.css.ts +5 -0
package/dist/cjs/index.js
CHANGED
|
@@ -638,7 +638,7 @@ const Modal = (props) => {
|
|
|
638
638
|
zIndex: baseZIndex + 2,
|
|
639
639
|
// Override sizes for even larger for XL
|
|
640
640
|
width: (size === ModalSize$1.ExtraLarge
|
|
641
|
-
? 'calc(100vw -
|
|
641
|
+
? 'calc(100vw - 1rem)'
|
|
642
642
|
: undefined),
|
|
643
643
|
maxWidth: (size === ModalSize$1.ExtraLarge
|
|
644
644
|
? '80rem'
|
|
@@ -920,6 +920,11 @@ const shared = `
|
|
|
920
920
|
padding: 0 !important;
|
|
921
921
|
margin: 0 !important;
|
|
922
922
|
}
|
|
923
|
+
|
|
924
|
+
/* Tooltip on Very Top */
|
|
925
|
+
.tooltip {
|
|
926
|
+
z-index: 9000000000 !important;
|
|
927
|
+
}
|
|
923
928
|
`;
|
|
924
929
|
|
|
925
930
|
/**
|