24 lines
796 B
CSS
24 lines
796 B
CSS
.leaflet-map {
|
|
height: 400px;
|
|
z-index: 1;
|
|
}
|
|
|
|
html[data-textdirection=rtl] .leaflet-map .leaflet-control-container .leaflet-left {
|
|
left: 0;
|
|
right: unset;
|
|
}
|
|
html[data-textdirection=rtl] .leaflet-map .leaflet-control-container .leaflet-left .leaflet-control-zoom,
|
|
html[data-textdirection=rtl] .leaflet-map .leaflet-control-container .leaflet-left .leaflet-control-layers {
|
|
margin-right: 0;
|
|
margin-left: 10px;
|
|
}
|
|
html[data-textdirection=rtl] .leaflet-map .leaflet-control-container .leaflet-right {
|
|
right: 0;
|
|
left: unset;
|
|
}
|
|
html[data-textdirection=rtl] .leaflet-map .leaflet-control-container .leaflet-right .leaflet-control-zoom,
|
|
html[data-textdirection=rtl] .leaflet-map .leaflet-control-container .leaflet-right .leaflet-control-layers {
|
|
margin-right: 10px;
|
|
margin-left: 0px;
|
|
}
|