You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.1 KiB
39 lines
1.1 KiB
7 months ago
|
// ================================================================================================
|
||
|
// 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;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|