Open seyfro opened 8 years ago
Hi Rob,
I would suggest changing the following CSS definition from
.leaflet-control-minimap { border:solid rgba(255, 255, 255, 1.0) 4px; box-shadow: 0 1px 5px rgba(0,0,0,0.65); border-radius: 3px; background: #f8f8f9; transition: all .6s; }
to
.leaflet-control-minimap { border:solid rgba(255, 255, 255, 1.0) 4px; box-shadow: 0 1px 5px rgba(0,0,0,0.65); border-radius: 3px; background: #f8f8f9; transition: all .6s; box-sizing:unset; }
Several users reported issues with minimap icon not being displayed correctly as their theme´s CSS was overriding the minimap CSS, see the following example:
Add box-sizing:unset; as stated above, fixes this issue: best,
Robert
Hi Rob,
I would suggest changing the following CSS definition from
to
Several users reported issues with minimap icon not being displayed correctly as their theme´s CSS was overriding the minimap CSS, see the following example:
Add box-sizing:unset; as stated above, fixes this issue: best,
Robert