fix(dashboard: weather tile spacing
All checks were successful
Build and Publish Docker Image / build-and-push (push) Successful in 1m8s

This commit is contained in:
2025-10-31 01:26:13 +00:00
parent 1a2bea01d1
commit 9624eab798

View File

@@ -256,7 +256,7 @@ function WeatherTile() {
L:{lowTemp}°
</p>
</div>
<div className="flex flex-col space-y-2 flex-[1]">
<div className="flex flex-col space-y-2 flex-[2]">
{Array.from({ length: 24 }).map((_, index) => {
if (index === highlightIndexStart) {
return (
@@ -294,9 +294,9 @@ function WeatherTile() {
)
})}
</div>
<div className="flex flex-col justify-start h-full space-y-2 flex-[2]">
<div className="flex flex-col justify-start h-full space-y-2 flex-[3]">
<p
className={cn("text-3xl leading-none tracking-tight font-light pl-2", {
className={cn("text-3xl leading-none tracking-tight font-light pl-4", {
"text-red-400": errorWeatherDescription,
"animate-pulse": isLoadingWeatherDescription,
})}