Skip to content

Commit

Permalink
Fix artwork browser full-screen z-index flap
Browse files Browse the repository at this point in the history
  • Loading branch information
damassi committed Feb 22, 2020
1 parent 94224f0 commit bafb28f
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/Apps/Artwork/ArtworkApp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,14 @@ export class ArtworkApp extends React.Component<Props> {
</Col>
</Row>

<div id="lightbox-container" />
<div
id="lightbox-container"
style={{
position: "absolute",
top: 0,
zIndex: 1100, // over top nav
}}
/>
<SystemContextConsumer>
{({ mediator }) => <>{this.enableIntercomForBuyers(mediator)}</>}
</SystemContextConsumer>
Expand Down

0 comments on commit bafb28f

Please sign in to comment.