commit ecf6ef3b35d8d29114dd1a30b6b497bbd0031809
parent 77996cea77ef53023637b489dbbc1b8c564e6cc7
Author: Sergej Orlov <wladimirych@gmail.com>
Date: Fri, 16 May 2025 10:42:13 +0200
panoramas - fix wikimedia photos window size.
In Chrome, when panoramas are above map, on small (mobile) screens, and
more than 9 photos available, then scroll is not enabled for buttons
and no right navigation arrow is visible.
The problem is that the middle layout column has minimum size of 470px.
I do not know where this value comes from, and it is not so in Firefox.
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/src/lib/leaflet.map.sidebars/style.css b/src/lib/leaflet.map.sidebars/style.css
@@ -14,6 +14,7 @@
display: flex;
flex-direction: column;
flex-grow: 1;
+ min-width: 0;
}
.leaflet-map-container-with-sidebars {