map-leaflet.scss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. // ================================================================================================
  2. // File Name: leaflet.scss
  3. // Description: Leaflet map custom scss
  4. // ----------------------------------------------------------------------------------------------
  5. // Item Name: Vuexy - Vuejs, React, Angular, HTML & Laravel Admin Dashboard Template
  6. // Author: PIXINVENT
  7. // Author URL: http://www.themeforest.net/user/pixinvent
  8. // ================================================================================================
  9. .leaflet-map {
  10. height: 400px;
  11. z-index: 1;
  12. }
  13. html[data-textdirection='rtl'] {
  14. .leaflet-map {
  15. .leaflet-control-container {
  16. .leaflet-left {
  17. left: 0;
  18. right: unset;
  19. .leaflet-control-zoom,
  20. .leaflet-control-layers {
  21. margin-right: 0;
  22. margin-left: 10px;
  23. }
  24. }
  25. .leaflet-right {
  26. right: 0;
  27. left: unset;
  28. .leaflet-control-zoom,
  29. .leaflet-control-layers {
  30. margin-right: 10px;
  31. margin-left: 0px;
  32. }
  33. }
  34. }
  35. }
  36. }