From 0f5f6409ccf84e78c730b666e0e331e521a27da8 Mon Sep 17 00:00:00 2001 From: Yehoshua Sandler Date: Mon, 19 May 2025 20:20:09 -0500 Subject: [PATCH] style: sizing and break points for workout grid dashboard --- src/app/(frontend)/[tenant]/dashboard/workouts/page.tsx | 8 ++++---- src/components/Dashboard/DashboardContent.tsx | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/(frontend)/[tenant]/dashboard/workouts/page.tsx b/src/app/(frontend)/[tenant]/dashboard/workouts/page.tsx index 60dfea2..967a560 100644 --- a/src/app/(frontend)/[tenant]/dashboard/workouts/page.tsx +++ b/src/app/(frontend)/[tenant]/dashboard/workouts/page.tsx @@ -3,14 +3,14 @@ import { DashboardContent, DashboardContentSection } from '@/components/Dashboar const WorkoutsPage = () => { return ( - - + +

Workouts

- +

Exercises

- +

Clients

diff --git a/src/components/Dashboard/DashboardContent.tsx b/src/components/Dashboard/DashboardContent.tsx index 5db66f4..cb3e30c 100644 --- a/src/components/Dashboard/DashboardContent.tsx +++ b/src/components/Dashboard/DashboardContent.tsx @@ -9,7 +9,7 @@ type Props = { const DashboardContent = (props: Props) => { const { children, className } = props return ( -
+
{children}
)