aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/components
diff options
context:
space:
mode:
authorMohamed Bassem <me@mbassem.com>2025-06-07 15:13:32 +0000
committerMohamed Bassem <me@mbassem.com>2025-06-07 15:36:31 +0000
commit4e481f4b8bfc8b3ab3c84a73b51a937a47dc872c (patch)
treeacf4448132bb6e44db45d38332cc8f48794f4cec /apps/web/components
parentf53ad0a1bf373e4064ff3e142bfce4b27e4ef9d5 (diff)
downloadkarakeep-4e481f4b8bfc8b3ab3c84a73b51a937a47dc872c.tar.zst
fix(web): Smaller card titles in the user info page
Diffstat (limited to 'apps/web/components')
-rw-r--r--apps/web/components/settings/ChangePassword.tsx2
-rw-r--r--apps/web/components/settings/UserDetails.tsx2
-rw-r--r--apps/web/components/settings/UserOptions.tsx2
3 files changed, 3 insertions, 3 deletions
diff --git a/apps/web/components/settings/ChangePassword.tsx b/apps/web/components/settings/ChangePassword.tsx
index 703b9c16..a27741d9 100644
--- a/apps/web/components/settings/ChangePassword.tsx
+++ b/apps/web/components/settings/ChangePassword.tsx
@@ -65,7 +65,7 @@ export function ChangePassword() {
return (
<Card>
<CardHeader>
- <CardTitle className="flex items-center gap-2">
+ <CardTitle className="flex items-center gap-2 text-xl">
<Lock className="h-5 w-5" />
Security
</CardTitle>
diff --git a/apps/web/components/settings/UserDetails.tsx b/apps/web/components/settings/UserDetails.tsx
index 6135df47..b86129c8 100644
--- a/apps/web/components/settings/UserDetails.tsx
+++ b/apps/web/components/settings/UserDetails.tsx
@@ -15,7 +15,7 @@ export default async function UserDetails() {
<CardHeader>
<div className="flex items-center space-x-4">
<div className="space-y-1">
- <CardTitle className="flex items-center gap-2">
+ <CardTitle className="flex items-center gap-2 text-xl">
<User className="h-5 w-5" />
{t("settings.info.basic_details")}
</CardTitle>
diff --git a/apps/web/components/settings/UserOptions.tsx b/apps/web/components/settings/UserOptions.tsx
index 483c3f2b..4f18a2e3 100644
--- a/apps/web/components/settings/UserOptions.tsx
+++ b/apps/web/components/settings/UserOptions.tsx
@@ -106,7 +106,7 @@ export default function UserOptions() {
<Form {...form}>
<Card>
<CardHeader>
- <CardTitle className="flex items-center gap-2">
+ <CardTitle className="flex items-center gap-2 text-xl">
<Globe className="h-5 w-5" />
{t("settings.info.options")}
</CardTitle>