From 3fd94626b6946ddb05b1b86551260a8c08494b99 Mon Sep 17 00:00:00 2001 From: ztimson Date: Wed, 24 Jun 2026 01:21:21 -0400 Subject: [PATCH] Client fixes --- client/src/components/CurrentWeather.vue | 6 +++--- client/src/components/MapView.vue | 19 ++++--------------- client/src/components/MetricCard.vue | 1 + client/src/services/api.ts | 1 + server/influx.mjs | 2 +- server/openweather.mjs | 6 ------ 6 files changed, 10 insertions(+), 25 deletions(-) diff --git a/client/src/components/CurrentWeather.vue b/client/src/components/CurrentWeather.vue index fab2a33..3efb39a 100644 --- a/client/src/components/CurrentWeather.vue +++ b/client/src/components/CurrentWeather.vue @@ -60,9 +60,9 @@ onMounted(async () => { } .today-label { - font-size: 16px; + font-size: 12px; font-weight: 600; - color: var(--text); + color: var(--text-muted); } .hi-lo { @@ -125,8 +125,8 @@ onMounted(async () => {
+ weather
{{ data.label }}
- weather
diff --git a/client/src/components/MapView.vue b/client/src/components/MapView.vue index d3e25cb..f8e049e 100644 --- a/client/src/components/MapView.vue +++ b/client/src/components/MapView.vue @@ -1,5 +1,6 @@