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
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
* Universal stylesheet
|
|
3
3
|
* @author Gabe Abrams
|
|
4
4
|
*/
|
|
5
|
-
declare const shared = "\n/* Button with no style */\n.btn-nostyle {\n border: 0 !important;\n background: transparent !important;\n outline: 0 !important;\n font-size: inherit !important;\n color: inherit !important;\n padding: 0 !important;\n margin: 0 !important;\n}\n";
|
|
5
|
+
declare const shared = "\n/* Button with no style */\n.btn-nostyle {\n border: 0 !important;\n background: transparent !important;\n outline: 0 !important;\n font-size: inherit !important;\n color: inherit !important;\n padding: 0 !important;\n margin: 0 !important;\n}\n\n/* Tooltip on Very Top */\n.tooltip {\n z-index: 9000000000 !important;\n}\n";
|
|
6
6
|
export default shared;
|
package/dist/esm/index.js
CHANGED
|
@@ -611,7 +611,7 @@ const Modal = (props) => {
|
|
|
611
611
|
zIndex: baseZIndex + 2,
|
|
612
612
|
// Override sizes for even larger for XL
|
|
613
613
|
width: (size === ModalSize$1.ExtraLarge
|
|
614
|
-
? 'calc(100vw -
|
|
614
|
+
? 'calc(100vw - 1rem)'
|
|
615
615
|
: undefined),
|
|
616
616
|
maxWidth: (size === ModalSize$1.ExtraLarge
|
|
617
617
|
? '80rem'
|
|
@@ -893,6 +893,11 @@ const shared = `
|
|
|
893
893
|
padding: 0 !important;
|
|
894
894
|
margin: 0 !important;
|
|
895
895
|
}
|
|
896
|
+
|
|
897
|
+
/* Tooltip on Very Top */
|
|
898
|
+
.tooltip {
|
|
899
|
+
z-index: 9000000000 !important;
|
|
900
|
+
}
|
|
896
901
|
`;
|
|
897
902
|
|
|
898
903
|
/**
|