Files
sccs_laravel/resources/scss/base/plugins/maps/map-leaflet.scss
2025-11-04 16:23:40 +05:00

39 lines
1.1 KiB
SCSS

// ================================================================================================
// File Name: leaflet.scss
// Description: Leaflet map custom scss
// ----------------------------------------------------------------------------------------------
// Item Name: Vuexy - Vuejs, HTML & Laravel Admin Dashboard Template
// Author: PIXINVENT
// Author URL: http://www.themeforest.net/user/pixinvent
// ================================================================================================
.leaflet-map {
height: 400px;
z-index: 1;
}
html[data-textdirection='rtl'] {
.leaflet-map {
.leaflet-control-container {
.leaflet-left {
left: 0;
right: unset;
.leaflet-control-zoom,
.leaflet-control-layers {
margin-right: 0;
margin-left: 10px;
}
}
.leaflet-right {
right: 0;
left: unset;
.leaflet-control-zoom,
.leaflet-control-layers {
margin-right: 10px;
margin-left: 0px;
}
}
}
}
}