diff --git a/src/components/widgets/openweathermap/weather.jsx b/src/components/widgets/openweathermap/weather.jsx index 554956a9a..6a1f2a16d 100644 --- a/src/components/widgets/openweathermap/weather.jsx +++ b/src/components/widgets/openweathermap/weather.jsx @@ -16,7 +16,7 @@ function Widget({ options }) { if (error || data?.cod === 401 || data?.error) { return ( -
+
@@ -32,7 +32,7 @@ function Widget({ options }) { if (!data) { return ( -
+
@@ -49,7 +49,7 @@ function Widget({ options }) { const unit = options.units === "metric" ? "celsius" : "fahrenheit"; return ( -
+
requestLocation()} - className="flex flex-col justify-center first:ml-auto ml-4" + className="flex flex-col justify-center first:ml-auto ml-4 mr-2" >
diff --git a/src/components/widgets/weather/weather.jsx b/src/components/widgets/weather/weather.jsx index f13c177f5..20bf3dec2 100644 --- a/src/components/widgets/weather/weather.jsx +++ b/src/components/widgets/weather/weather.jsx @@ -16,7 +16,7 @@ function Widget({ options }) { if (error || data?.error) { return ( -
+
@@ -32,7 +32,7 @@ function Widget({ options }) { if (!data) { return ( -
+
@@ -49,7 +49,7 @@ function Widget({ options }) { const unit = options.units === "metric" ? "celsius" : "fahrenheit"; return ( -
+
@@ -103,7 +103,11 @@ export default function WeatherApi({ options }) { if (!location) { return ( -