We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e358ce commit e3bcedeCopy full SHA for e3bcede
packages/panda/CHANGELOG.md
@@ -36,6 +36,7 @@ The CLI now prompts the following:
36
### Fixed
37
38
- **Textarea**: Fixed an issue where the `invalid` state was not rendered correctly.
39
+- **Tooltip**: Set a proper `z-index` value to ensure the tooltip is displayed above other elements.
40
- Resolved a warning related to the undefined usage of `colors.red.9`.
41
42
## [0.41.0] - 2024-07-28
packages/panda/src/theme/recipes/tooltip.ts
@@ -15,6 +15,7 @@ export const tooltip = defineSlotRecipe({
15
py: '2',
16
textStyle: 'xs',
17
maxWidth: '2xs',
18
+ zIndex: 'tooltip',
19
_open: {
20
animation: 'fadeIn 0.25s ease-out',
21
},
0 commit comments