Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ _Note: Gaps between patch versions are faulty, broken or test releases._

## UNRELEASED

* **Bug Fix**
* Fix tooltip styling in dark mode when using CSS Modules ([#688](https://github.com/webpack/webpack-bundle-analyzer/pull/688) by [@theEquinoxDev](https://github.com/theEquinoxDev))


## 5.1.0

* **Bug Fix**
Expand Down
6 changes: 6 additions & 0 deletions client/components/Tooltip.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,9 @@
opacity: 0;
visibility: hidden;
}

:global(html[data-theme='dark']) .container {
background: var(--bg-primary);
color: var(--text-primary);
border: 1px solid var(--border-color);
}