From d283b1534122e53106d09f326950b4250dab3419 Mon Sep 17 00:00:00 2001 From: Marc Klose Date: Mon, 6 Apr 2026 02:50:03 +0300 Subject: [PATCH] feat: implement global UI scaling for a bolder 'zoomed-in' look --- app/dashboard/settings/account/page.tsx | 22 ++++++---------------- app/globals.css | 4 ++++ components/sidebar.tsx | 10 +++++----- 3 files changed, 15 insertions(+), 21 deletions(-) diff --git a/app/dashboard/settings/account/page.tsx b/app/dashboard/settings/account/page.tsx index 0d1bf9c..069a0e2 100644 --- a/app/dashboard/settings/account/page.tsx +++ b/app/dashboard/settings/account/page.tsx @@ -19,13 +19,11 @@ async function AccountSettingsContent() { .single(); const isConnected = !!profile?.unipile_account_id; - const accountId = profile?.unipile_account_id as string | null; - const status = profile?.unipile_account_status as string | null; return ( -
+
-

Account Settings

+

Account Settings

Manage your personal account and integrations.

@@ -33,8 +31,8 @@ async function AccountSettingsContent() { {/* LinkedIn Integration */}
-

- +

+ LinkedIn Integration

@@ -62,15 +60,7 @@ async function AccountSettingsContent() { )}

- {isConnected && ( -
- Account ID: - {accountId} - {status && status !== "CONNECTED" && ( - ({status}) - )} -
- )} +
{isConnected ? ( @@ -87,7 +77,7 @@ async function AccountSettingsContent() { function AccountSettingsSkeleton() { return ( -
+
diff --git a/app/globals.css b/app/globals.css index 9e332aa..40734e6 100644 --- a/app/globals.css +++ b/app/globals.css @@ -2,6 +2,10 @@ @tailwind components; @tailwind utilities; +html { + font-size: 110%; +} + @layer base { :root { --background: 0 0% 100%; diff --git a/components/sidebar.tsx b/components/sidebar.tsx index f57a550..8261c5b 100644 --- a/components/sidebar.tsx +++ b/components/sidebar.tsx @@ -70,7 +70,7 @@ export const Sidebar: FC = () => {