Hello,
I have a page where there are some dropdowns on top and a mapbox at the bottom. I want the mapbox to have a height that will fill the rest of the screen dynamically below the dropdowns.
I understand you can set a viewport height like so dcc.Graph(style={‘height’:‘100vh’}) but because there are dropdowns on top, the height of the map is actually bigger than the screen so you have to scroll down to view the rest of the map.
Is there a way to fill the rest of the screen dynamically below the dropdowns? Conceptually, like map height = 100vh - (height of dropdown div).