Display selected coordinates on the map in the top right

This commit is contained in:
Dana Lambert 2021-10-19 16:04:04 +13:00
parent 695aceaaa0
commit aa3f9dc7f0
2 changed files with 30 additions and 8 deletions

View file

@ -1,4 +1,19 @@
.map-container, .leaflet-container {
height: 100%;
width: 100%;
position: relative;
z-index: 1;
}
.coordinates-display {
position: absolute;
right: 0;
top: 0;
z-index: 2;
font-size: 12px;
background: white;
color: $background-color-primary;
padding: 3px 6px;
margin: 6px;
border-radius: 5px;
}