mirror of
https://github.com/walkermatt/ol-layerswitcher.git
synced 2025-12-08 19:06:03 +00:00
12 lines
345 B
CSS
12 lines
345 B
CSS
/* Set a small height to demonstrate the layer switcher automatically scrolling when needed */
|
|
#map {
|
|
max-height: 300px;
|
|
}
|
|
|
|
/* Fixed max-height for IE11 to support scrolling, due to incomplete support for flexbox */
|
|
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
|
|
.layer-switcher.shown {
|
|
max-height: 170px;
|
|
}
|
|
}
|