rcgit

/ karakeep

Commit bf38d786

SHA bf38d786c6070e2d8026d1582ddfab8ecba19183
Author MohamedBassem <me at mbassem dot com>
Author Date 2024-03-31 17:51 +0100
Committer MohamedBassem <me at mbassem dot com>
Commit Date 2024-03-31 19:27 +0100
Parent(s) a0d2ac777cc5 (diff)
Tree d0cd412b4777

patch snapshot

ui(web): Add a background to the all lists pane
File + - Graph
M apps/web/app/dashboard/lists/page.tsx +1 -1
1 file(s) changed, 1 insertions(+), 1 deletions(-)

apps/web/app/dashboard/lists/page.tsx

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} />