Merge pull request #1808 from umap-project/panel-height-with-footer-bar

fix: adapt panel expanded height when map has a caption bar
This commit is contained in:
Yohan Boniface 2024-05-09 17:56:39 +02:00 committed by GitHub
commit eb1a0bae25
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -139,4 +139,8 @@
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
.umap-caption-bar-enabled .panel.expanded {
height: calc(100% - var(--footer-height));
max-height: calc(100% - var(--footer-height));
}
}