Add animated progress bar during route computation

Blue sliding progress bar appears at the top of the map while
BRouter is computing a route. Overlays on top of Leaflet map
with z-index 1000.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Ullrich Schäfer 2026-03-23 07:30:00 +01:00
parent 6ee07f0570
commit 2e5c31d117
No known key found for this signature in database
GPG key ID: A32FF691A0F752D9
2 changed files with 13 additions and 1 deletions

View file

@ -1 +1,6 @@
@import "tailwindcss";
@keyframes slide {
0% { transform: translateX(-100%); }
100% { transform: translateX(400%); }
}