From 3032a8495174f4f583f52c4e9429b6d4d357dc0c Mon Sep 17 00:00:00 2001 From: navewindre Date: Wed, 12 Nov 2025 06:32:24 +0100 Subject: aa --- web/src/sidebar.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'web/src/sidebar.tsx') diff --git a/web/src/sidebar.tsx b/web/src/sidebar.tsx index de7b2fd..6ada6f9 100644 --- a/web/src/sidebar.tsx +++ b/web/src/sidebar.tsx @@ -50,12 +50,13 @@ async function updateWeather() { function Weather() { setTimeout( updateWeather ); const weather = getWeatherCache(); + const small = !!( window.innerWidth < 750 ); if( weather && weather.current ) { const temp = weather.current.temperature_2m; const wind = weather.current.wind_speed_10m; const humi = weather.current.relative_humidity_2m; return
- + @@ -63,7 +64,7 @@ function Weather() { } return
- + -- cgit v1.2.3