1
0
Fork 0
mirror of https://github.com/iNavFlight/inav-configurator.git synced 2025-07-23 16:25:19 +03:00

Show telemetry data in the groundstation

This commit is contained in:
Pawel Spychalski (DzikuVx) 2024-03-23 18:41:13 +01:00
parent 6db05efefb
commit 542a307338
4 changed files with 116 additions and 1 deletions

View file

@ -2,9 +2,36 @@
background-color: #2e2e2e;
width: 100%;
height: 100%;
display: flex;
}
#groundstation-map {
width: 100%;
height: 100%;
}
#groundstation-telemetry {
width: 20%;
color: #ddd;
}
.groundstation-telemetry__header {
margin: 1em;
text-align: center;
}
.groundstation-telemetry__row {
display: flex;
justify-content: space-between;
margin: 1em;
font-size: 1.1em;
}
.groundstation-telemetry__row--big {
font-size: 2.2em;
}
.groundstation-telemetry__label {
color: #aaa;
font-weight: bold;
}