This commit is contained in:
Florian Schroedl
2024-01-23 17:30:00 +01:00
parent 9c7258c0b0
commit 7adfb2d4ad
3 changed files with 9 additions and 5 deletions

View File

@@ -72,7 +72,10 @@ export const Dashboard = function ({ state, updateState }) {
}, [state.dataCache, dateTime]);
return (
<div className="flex p-5 bg-white border border-solid border-slate-300 rounded-lg space-y-5">
<div
className="flex p-5 bg-white border border-solid border-slate-300 rounded-lg space-y-5 w-full h-full"
style={{ maxWidth: "810px", maxHeight: "470px" }}
>
<div>
<h1 className="text-lg font-medium mb-2">Forecast</h1>
<ForecastDatePicker dateTime={dateTime} onChange={setDateTime} />