aboutsummaryrefslogtreecommitdiff
path: root/apps/web/src/components/Sidebar
diff options
context:
space:
mode:
authoryxshv <[email protected]>2024-04-15 02:20:18 +0530
committeryxshv <[email protected]>2024-04-15 02:20:18 +0530
commit0a2956436ecc9ad653cd781e20d0ea6d6dc0fd56 (patch)
tree4d3292cc947c5f7e67922b5b1012adcb8c888e9c /apps/web/src/components/Sidebar
parentfix context menu (diff)
downloadsupermemory-0a2956436ecc9ad653cd781e20d0ea6d6dc0fd56.tar.xz
supermemory-0a2956436ecc9ad653cd781e20d0ea6d6dc0fd56.zip
everything done
Diffstat (limited to 'apps/web/src/components/Sidebar')
-rw-r--r--apps/web/src/components/Sidebar/index.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/web/src/components/Sidebar/index.tsx b/apps/web/src/components/Sidebar/index.tsx
index f1a25a85..481c0792 100644
--- a/apps/web/src/components/Sidebar/index.tsx
+++ b/apps/web/src/components/Sidebar/index.tsx
@@ -208,10 +208,10 @@ export function ProfileTab({ open }: { open: boolean }) {
}, [open])
return (
- <div className="text-rgray-11 h-full flex w-full font-normal flex-col items-start py-8 text-left">
- <div className="w-full px-8">
+ <div className="text-rgray-11 h-full flex w-full font-normal flex-col items-start py-3 md:py-8 text-left">
+ <div className="w-full px-6">
<h1 className="w-full text-2xl font-medium">Profile</h1>
- <div className="w-full mt-5 grid grid-cols-3">
+ <div className="w-full mt-5 grid gap-1 grid-cols-3">
<img
className="rounded-full"
src={session?.user?.image ?? "/icons/white_without_bg.png"}