aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/app/dashboard/settings
diff options
context:
space:
mode:
authorMohamedBassem <me@mbassem.com>2024-03-29 21:33:15 +0000
committerMohamedBassem <me@mbassem.com>2024-03-30 02:14:59 +0000
commit30c8bc394100f2348a1f9c193036f95e045d4d6d (patch)
tree307ee15b7c6d78829e8a6bc702e8aea5c16b35b7 /apps/web/app/dashboard/settings
parent177e827bf7cd74008ed73973dda5a8d4f11291cf (diff)
downloadkarakeep-30c8bc394100f2348a1f9c193036f95e045d4d6d.tar.zst
fix(web): Consistent spacing in the content container in all pages. Fixes #40
Diffstat (limited to 'apps/web/app/dashboard/settings')
-rw-r--r--apps/web/app/dashboard/settings/page.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/web/app/dashboard/settings/page.tsx b/apps/web/app/dashboard/settings/page.tsx
index f75bc298..059660b7 100644
--- a/apps/web/app/dashboard/settings/page.tsx
+++ b/apps/web/app/dashboard/settings/page.tsx
@@ -3,7 +3,7 @@ import { ChangePassword } from "@/components/dashboard/settings/ChangePassword";
export default async function Settings() {
return (
- <div className="m-4 flex flex-col space-y-2 rounded-md border bg-background p-4">
+ <div className="flex flex-col space-y-2 rounded-md border bg-background p-4">
<p className="text-2xl">Settings</p>
<ChangePassword />
<ApiKeySettings />