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 2ba0894 commit 93ce319Copy full SHA for 93ce319
CHANGELOG.md
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
8
## [Unreleased]
9
10
+### Fixed
11
+
12
+- `Popover` & `Tooltip`: fix popper warning on margin style applied by class `.visually-hidden`.
13
14
## [3.15.0][] - 2025-07-02
15
16
### Fixed
packages/lumx-core/src/scss/core/base/_helpers.scss
@@ -33,3 +33,8 @@
33
clip: rect(0 0 0 0) !important;
34
border: 0 !important;
35
}
36
37
+/** Need to remove the margin style on popper elements or else we get warnings in the console */
38
+.lumx-popover.visually-hidden, .lumx-tooltip.visually-hidden {
39
+ margin: revert !important;
40
+}
0 commit comments