fix landscape orientation
All checks were successful
ClarkeIS Build / Build-Docker-Image (push) Successful in 42s

This commit is contained in:
2025-07-28 20:55:17 -04:00
parent 881ea4053c
commit 9ca745114f
2 changed files with 12 additions and 5 deletions

View File

@@ -18,11 +18,11 @@
<video id="preview">video stream unavailable</video>
</div>
<div id="details" style="display: none;">
<span>Longitude: <input type="number" id="long"/></span>
<span>Latitude: <input type="number" id="lat"/></span>
<button onclick="populateLocation()" id="here">Current Location</button>
<span>Title: <input type="text" id="title" placeholder="123 A Place"/></span>
<span>Notes: <input type="text" id="notes" placeholder="Location Notes" /></span>
<span>Longitude: <input type="number" id="long"/></span><br>
<span>Latitude: <input type="number" id="lat"/></span><br>
<button onclick="populateLocation()" id="here">Current Location</button><br>
<span>Title: <input type="text" id="title" placeholder="123 A Place"/></span><br>
<span>Notes: <input type="text" id="notes" placeholder="Location Notes" /></span><br>
<button onclick="render()">Finish</button>
</div>
<div id="finalresult" style="display: none;">

View File

@@ -128,6 +128,7 @@ button:hover {
input {
font-size: 1.5em;
max-width: 100vw;
}
#details > span {
@@ -145,3 +146,9 @@ input {
iframe {
flex-grow: 3;
}
#details {
overflow-y: auto;
display: block;
text-align: center;
}