Fix z-index layering for GraphViewer UI panels
This commit is contained in:
parent
da2e9efd11
commit
54c48dce38
1 changed files with 2 additions and 2 deletions
|
|
@ -226,13 +226,13 @@ const GraphViewer = () => {
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{showPropertyPanel && (
|
{showPropertyPanel && (
|
||||||
<div className="absolute top-2 right-2">
|
<div className="absolute top-2 right-2 z-10">
|
||||||
<PropertiesView />
|
<PropertiesView />
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{showLegend && (
|
{showLegend && (
|
||||||
<div className="absolute bottom-10 right-2">
|
<div className="absolute bottom-10 right-2 z-0">
|
||||||
<Legend className="bg-background/60 backdrop-blur-lg" />
|
<Legend className="bg-background/60 backdrop-blur-lg" />
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue