🐞 fix: Move sidebar border

This commit is contained in:
Keith Solomon
2025-07-27 10:27:07 -05:00
parent fb5093a529
commit 6b3669b8bf
6 changed files with 7 additions and 7 deletions

View File

@@ -27,7 +27,7 @@ const supabaseKey = import.meta.env.PUBLIC_SUPABASE_ANON_KEY;
<main class="flex">
<Sidebar />
<div class="flex-1 flex flex-col overflow-hidden">
<div class="border-l flex-1 flex flex-col overflow-hidden">
<div class="flex-1 overflow-y-auto p-4">
<div id="success" class="bg-green-100 text-green-700 p-4 rounded mb-4 hidden">
Prompt added successfully!

View File

@@ -27,7 +27,7 @@ const supabaseKey = import.meta.env.PUBLIC_SUPABASE_ANON_KEY;
<main class="flex">
<Sidebar />
<div class="flex-1 flex flex-col overflow-hidden">
<div class="border-l flex-1 flex flex-col overflow-hidden">
<main class="flex-1 overflow-y-auto p-4">
<div id="edit-root">Loading...</div>
</main>

View File

@@ -25,8 +25,8 @@ const allTags = Array.from(
<main class="flex">
<SearchBar allTags={allTags} />
<div class="flex-1 flex flex-col overflow-hidden">
<div class="flex-1 overflow-y-auto px-6 pt-2">
<div class="border-l flex-1 flex flex-col overflow-hidden">
<div class="flex-1 overflow-y-auto px-6 pt-2 pb-4">
{error
? <p class="text-red-500">Supabase error: {error.message}</p>
: <FilteredPromptList prompts={prompts} />}