diff --git a/README.md b/README.md
new file mode 100644
index 0000000..c84d532
--- /dev/null
+++ b/README.md
@@ -0,0 +1,4 @@
+## TODO
+- Make sure openmeteo properties match + we backfill any missing
+- Fix daily (missing future dates + timestamp on 24 hour forecast is wrong)
+- Update openapi doc
diff --git a/client/src/assets/main.css b/client/src/assets/main.css
index 14cd3e2..8ad1097 100644
--- a/client/src/assets/main.css
+++ b/client/src/assets/main.css
@@ -6,7 +6,7 @@
:root {
--bg: #ffffff;
- --surface: #d0dae1;
+ --surface: #e5e9ec;
--border: #e2e8f0;
--text: #0f172a;
--text-muted: #64748b;
diff --git a/client/src/components/Aircraft.vue b/client/src/components/Aircraft.vue
index f314edc..c3bc987 100644
--- a/client/src/components/Aircraft.vue
+++ b/client/src/components/Aircraft.vue
@@ -149,8 +149,8 @@ const navball = computed(() => {
const compassLabels = [-60, -45, -30, -15, 0, 15, 30, 45, 60].map(offset => {
const rad = offset * Math.PI / 180
- const x = 100 + 90 * Math.sin(rad)
- const y = 100 - 90 * Math.cos(rad)
+ const x = 100 + 70 * Math.sin(rad)
+ const y = 100 - 70 * Math.cos(rad)
const h = Math.round((offset + 360) % 360)
const lbl = ({ 0: 'N', 90: 'E', 180: 'S', 270: 'W' } as any)[h] || ''
return lbl ? `${lbl}` : ''
diff --git a/client/src/components/CurrentWeather.vue b/client/src/components/CurrentWeather.vue
index 00d7c3b..8dd3559 100644
--- a/client/src/components/CurrentWeather.vue
+++ b/client/src/components/CurrentWeather.vue
@@ -1,5 +1,6 @@