Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mobile display improvements #235

Open
wants to merge 9 commits into
base: dev
Choose a base branch
from
Prev Previous commit
Next Next commit
prevent OpenStreetMap attribution from sitting on top of distance scale
  • Loading branch information
gregdev committed Feb 29, 2024
commit 275c63314d9745aa028d798d90923055ba0842d4
10 changes: 10 additions & 0 deletions public_html/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,16 @@ body {
left: 10px !important;
}

.ol-attribution {
max-width: calc(100% - 160px);
}

@media (max-width: 560px) {
.ol-attribution {
font-size: 10px;
}
}

div#SpecialSquawkWarning {
position: absolute;
bottom: 25px;
Expand Down