Skip to content

Commit 0b8789e

Browse files
committed
fix(dashboard): dashboard scrolls instead of overlapping in short windows — lg:min-h-full + drop min-h-0 on charts grid (verified in browser); bump v1.2.30
1 parent de6dd63 commit 0b8789e

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

apps/desktop/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@florin/desktop",
3-
"version": "1.2.29",
3+
"version": "1.2.30",
44
"private": true,
55
"main": "dist-main/index.cjs",
66
"scripts": {

apps/desktop/src/app/(dashboard)/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ async function MonthForecastServer() {
222222
export default async function DashboardPage() {
223223
const t = await getServerT()
224224
return (
225-
<div className="flex min-h-0 flex-col gap-3 lg:h-full">
225+
<div className="flex min-h-0 flex-col gap-3 lg:min-h-full">
226226
<Suspense fallback={null}>
227227
<OnboardingBannerServer />
228228
</Suspense>
@@ -270,7 +270,7 @@ export default async function DashboardPage() {
270270
* Objectif) sit on one short row. On mobile everything stacks + scrolls.
271271
*/}
272272
<div className="flex min-h-0 flex-1 flex-col gap-3">
273-
<div className="grid min-h-0 flex-1 grid-cols-1 gap-3 [grid-auto-rows:minmax(280px,1fr)] lg:grid-cols-3 lg:[grid-auto-rows:minmax(340px,1fr)]">
273+
<div className="grid flex-1 grid-cols-1 gap-3 [grid-auto-rows:minmax(280px,1fr)] lg:grid-cols-3 lg:[grid-auto-rows:minmax(340px,1fr)]">
274274
<div className="min-h-0 h-full lg:col-span-2">
275275
<Suspense fallback={<CardSkeleton />}>
276276
<PatrimonyChartServer />

apps/web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@florin/web",
3-
"version": "1.2.29",
3+
"version": "1.2.30",
44
"private": true,
55
"scripts": {
66
"dev": "next dev --experimental-https",

apps/web/src/app/(dashboard)/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ async function MonthForecastServer() {
227227
export default async function DashboardPage() {
228228
const t = await getServerT()
229229
return (
230-
<div className="flex min-h-0 flex-col gap-3 lg:h-full">
230+
<div className="flex min-h-0 flex-col gap-3 lg:min-h-full">
231231
<Suspense fallback={null}>
232232
<OnboardingBannerServer />
233233
</Suspense>
@@ -275,7 +275,7 @@ export default async function DashboardPage() {
275275
* Objectif) sit on one short row. On mobile everything stacks + scrolls.
276276
*/}
277277
<div className="flex min-h-0 flex-1 flex-col gap-3">
278-
<div className="grid min-h-0 flex-1 grid-cols-1 gap-3 [grid-auto-rows:minmax(280px,1fr)] lg:grid-cols-3 lg:[grid-auto-rows:minmax(340px,1fr)]">
278+
<div className="grid flex-1 grid-cols-1 gap-3 [grid-auto-rows:minmax(280px,1fr)] lg:grid-cols-3 lg:[grid-auto-rows:minmax(340px,1fr)]">
279279
<div className="min-h-0 h-full lg:col-span-2">
280280
<Suspense fallback={<CardSkeleton />}>
281281
<PatrimonyChartServer />

0 commit comments

Comments
 (0)