diff options
| author | MohamedBassem <me@mbassem.com> | 2024-03-31 17:51:53 +0100 |
|---|---|---|
| committer | MohamedBassem <me@mbassem.com> | 2024-03-31 19:27:25 +0100 |
| commit | bf38d786c6070e2d8026d1582ddfab8ecba19183 (patch) | |
| tree | d0cd412b4777118669e5e8fb0decff9eba32b750 | |
| parent | a0d2ac777cc52b937b52648231d036a2cc79b2c4 (diff) | |
| download | karakeep-bf38d786c6070e2d8026d1582ddfab8ecba19183.tar.zst | |
ui(web): Add a background to the all lists pane
| -rw-r--r-- | apps/web/app/dashboard/lists/page.tsx | 2 |
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} /> |
