How do I either change the height of the feature-menu-viewport to match the main-container, or have it automatically fill it in?
I tried:
.esri-popup__main-container.esri-widget {
width: 500px !important;
height: 800px !important;
}
.esri-popup__feature-menu-viewport {
height: 800px !important;
}
Solved! Go to Solution.
Here is what you need:
.esri-popup__feature-menu-viewport {
max-height: none !important;
height: 600px !important;
}
Here is what you need:
.esri-popup__feature-menu-viewport {
max-height: none !important;
height: 600px !important;
}
Thank you!