From 5b816c6873bed97cc7e2a64e6e7ffda98507d72a Mon Sep 17 00:00:00 2001 From: LandaMm Date: Fri, 30 May 2025 21:26:43 +0200 Subject: [PATCH] feat: remove default inner padding for dashboard pages --- web/src/layout/DashboardLayout.tsx | 11 ++++++----- web/src/pages/PersonalInfo/index.tsx | 4 ++-- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/web/src/layout/DashboardLayout.tsx b/web/src/layout/DashboardLayout.tsx index 407af96..f8e56aa 100644 --- a/web/src/layout/DashboardLayout.tsx +++ b/web/src/layout/DashboardLayout.tsx @@ -19,16 +19,17 @@ const DashboardLayout: FC = () => { - +
-
+
-
- -
+
diff --git a/web/src/pages/PersonalInfo/index.tsx b/web/src/pages/PersonalInfo/index.tsx index c33b191..40d2dca 100644 --- a/web/src/pages/PersonalInfo/index.tsx +++ b/web/src/pages/PersonalInfo/index.tsx @@ -7,7 +7,7 @@ const PersonalInfoPage: FC = () => { const profile = useAuth((state) => state.profile); return ( - <> +

Your profile info in Home services

@@ -61,7 +61,7 @@ const PersonalInfoPage: FC = () => {
- + ); };