Fix wrong overflow management in custom panels

This commit is contained in:
Luc
2020-10-30 16:46:29 +01:00
parent d3f0bf8c69
commit 8a804ddacb
6 changed files with 1 additions and 2 deletions

View File

Binary file not shown.

View File

Binary file not shown.

View File

Binary file not shown.

View File

Binary file not shown.

View File

@@ -244,7 +244,7 @@ const ExtraPanel = ({ data }) => {
</button>
</div>
</div>
<div style="height: 400px;">{content}</div>
<div style="height: 400px; overflow: auto;">{content}</div>
</div>
</div>
</div>

View File

@@ -60,5 +60,4 @@
.espcontainer {
position: relative;
overflow-y: auto;
}