Axione-IPE-Viewer/webapp/static/style.css
Félix Baylac-Jacqué 6c8c3b138d webapp: fetch eligibility data on backend
We fetch the eligibility data from the backend for the area the user
is currently viewing.

We don't want to trigger the search when the user is zoomed out, it
could be heavy on the backend CPU. Hence, we trigger the fetch after
the user searched for his real address or reached a good-enough zoom level.

The backend is currently returning a dummy answer.
2022-02-21 17:21:21 +01:00

24 lines
275 B
CSS

body {
margin: 0;
}
#map {
width: 100vw;
height: 100vh;
z-index: 0;
}
#search-addr-autocomplete {
display: float;
top: 0;
z-index: 2;
}
#btn-load-elig-data {
top: 4em;
right: 0;
position: fixed;
z-index: 1;
padding: .5em;
}