gis-ops / valhalla-app

This is the demo web app running on https://valhalla.openstreetmap.de
https://valhalla.openstreetmap.de
MIT License
154 stars 87 forks source link

fixed button issue #209

Closed jaymehta002 closed 5 months ago

jaymehta002 commented 6 months ago

🛠️ Fixes Issue

Fixes the position of OSM button for screens below 383px.

👨‍💻 Changes proposed

set some rules for max-width: 383px and added some pixels to bottom

Code

@media screen and (max-width: 383px) {
  #osm-button {
    /* Adjust the position for smaller screens */
    bottom: 40px;
    right: 40px;
  }
}

📷 Screenshots

before: Screenshot 2024-01-09 231504

after Screenshot 2024-01-09 231145