Skip to content

Commit

Permalink
[C-2347] Improve popover zIndex (#3168)
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanjeffers committed Apr 5, 2023
1 parent 6772675 commit e310e84
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
:root,
root {
--layer: 0;
--layer-modal: 200;
--layer-popup: 300;
--layer-tooltip: 400;
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.wrapper {
position: absolute;
z-index: 1;
z-index: var(--layer-popup);
}

.popup {
Expand Down
1 change: 1 addition & 0 deletions apps/audius-client/packages/stems/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import './assets/styles/fonts.css'
import './assets/styles/colors.css'
import './assets/styles/animations.css'
import './assets/styles/transforms.css'
import './assets/styles/layers.css'

export * from './components/Icons'

Expand Down

0 comments on commit e310e84

Please sign in to comment.