aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web
diff options
context:
space:
mode:
authorMohamedBassem <me@mbassem.com>2024-03-31 17:51:53 +0100
committerMohamedBassem <me@mbassem.com>2024-03-31 19:27:25 +0100
commitbf38d786c6070e2d8026d1582ddfab8ecba19183 (patch)
treed0cd412b4777118669e5e8fb0decff9eba32b750 /apps/web
parenta0d2ac777cc52b937b52648231d036a2cc79b2c4 (diff)
downloadkarakeep-bf38d786c6070e2d8026d1582ddfab8ecba19183.tar.zst
ui(web): Add a background to the all lists pane
Diffstat (limited to 'apps/web')
-rw-r--r--apps/web/app/dashboard/lists/page.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/web/app/dashboard/lists/page.tsx b/apps/web/app/dashboard/lists/page.tsx
index f839ca80..1c22ac32 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="flex flex-col gap-3">
+ <div className="flex flex-col gap-3 rounded-md border bg-background p-4">
<p className="text-2xl">📋 All Lists</p>
<Separator />
<AllListsView initialData={lists.lists} />