We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10b5c14 commit 19628dcCopy full SHA for 19628dc
.changeset/soft-laws-camp.md
@@ -0,0 +1,5 @@
1
+---
2
+'@cube-dev/ui-kit': patch
3
4
+
5
+Fix Underlay's zIndex so modal dialogs can be stackable.
src/components/overlays/Modal/Underlay.tsx
@@ -13,7 +13,7 @@ const UnderlayElement = tasty({
13
right: 0,
14
bottom: 0,
15
left: 0,
16
- zIndex: 9,
+ zIndex: 10,
17
transitionDelay: '0ms',
18
opacity: {
19
'': 0,
src/components/portal/Portal.tsx
@@ -21,7 +21,7 @@ import { usePortal } from './usePortal';
21
* Portal will be rendered outside me!
22
*
23
* <Portal>
24
- * <div>some content will be showed outside of parent container</div>
+ * <div>some content will be shown outside the parent container</div>
25
* </Portal>
26
* </div>
27
* ```
0 commit comments