Select to view content in your preferred language

Zone Lookup adds BIG SPACE in mobile view when map is off BUG??

457
2
Jump to solution
04-13-2023 10:31 AM
Teresa_Blader
Occasional Contributor III

Seems like this space is useful when I click the info button, but it doesn't go away when I hide info button. 

Teresa_Blader_0-1681406140031.png

Teresa_Blader_1-1681406203128.png

Teresa Blader
Olmsted County GIS Specialist
0 Kudos
1 Solution

Accepted Solutions
KellyHutchins
Esri Frequent Contributor

This is a bug in the current release. It will be fixed in the next release of Online due out later this summer. In the meantime you can workaround this by adding the following CSS to the Custom CSS text box when configuring the app. 

 

@media screen and (max-width:859px){
.no-map   #resultsPanel{
    height:unset;
    top:100px;
}
}

View solution in original post

2 Replies
Teresa_Blader
Occasional Contributor III

Election App Zone Lookup 

Teresa Blader
Olmsted County GIS Specialist
0 Kudos
KellyHutchins
Esri Frequent Contributor

This is a bug in the current release. It will be fixed in the next release of Online due out later this summer. In the meantime you can workaround this by adding the following CSS to the Custom CSS text box when configuring the app. 

 

@media screen and (max-width:859px){
.no-map   #resultsPanel{
    height:unset;
    top:100px;
}
}