aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/app/dashboard/lists
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/lists
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/lists')
-rw-r--r--apps/web/app/dashboard/lists/[listId]/page.tsx2
-rw-r--r--apps/web/app/dashboard/lists/page.tsx2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/web/app/dashboard/lists/[listId]/page.tsx b/apps/web/app/dashboard/lists/[listId]/page.tsx
index bac2b5c7..e27e1841 100644
--- a/apps/web/app/dashboard/lists/[listId]/page.tsx
+++ b/apps/web/app/dashboard/lists/[listId]/page.tsx
@@ -35,7 +35,7 @@ export default async function ListPage({
showDivider={true}
header={
<div className="flex justify-between">
- <span className="pt-4 text-2xl">
+ <span className="text-2xl">
{list.icon} {list.name}
</span>
<DeleteListButton list={list} />
diff --git a/apps/web/app/dashboard/lists/page.tsx b/apps/web/app/dashboard/lists/page.tsx
index d379b1bb..f839ca80 100644
--- a/apps/web/app/dashboard/lists/page.tsx
+++ b/apps/web/app/dashboard/lists/page.tsx
@@ -6,7 +6,7 @@ export default async function ListsPage() {
const lists = await api.lists.list();
return (
- <div className="container mt-4 flex flex-col gap-3">
+ <div className="flex flex-col gap-3">
<p className="text-2xl">📋 All Lists</p>
<Separator />
<AllListsView initialData={lists.lists} />