fixup: hide home button in edit mode

The button is already on the edit bar.

Would be nicer to have a css transition, but at least with this
change it is not duplicated.
This commit is contained in:
Yohan Boniface 2025-03-11 15:32:01 +01:00
parent d85fc648b1
commit ef80396784

View file

@ -257,6 +257,9 @@ html[dir="rtl"] .leaflet-tooltip-pane > * {
.home-button:hover { .home-button:hover {
background-color: var(--color-lighterGray); background-color: var(--color-lighterGray);
} }
.umap-edit-enabled .home-button {
display: none;
}