aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/components/dashboard/preview
diff options
context:
space:
mode:
authorCari <44416326+lilacpixel@users.noreply.github.com>2024-05-19 05:09:24 -0400
committerGitHub <noreply@github.com>2024-05-19 10:09:24 +0100
commitcb62db781235fbc4b1fe92a3f8b26dadb5181963 (patch)
treee99ae5e2f9f18c140071b300b76a55755767c52f /apps/web/components/dashboard/preview
parentfdc27d38a22dfdb1ec8b91b0d80d654dd8b866e0 (diff)
downloadkarakeep-cb62db781235fbc4b1fe92a3f8b26dadb5181963.tar.zst
ui(web): Set tag input field in preview modal to 100% width to fix overflow issues on select dropdown (#165)
ui(web): Fixed issue with rounded corners on tag input field in preview modal ui(web): Adjusted styles for labels and fields in preview modal for visual consistency
Diffstat (limited to 'apps/web/components/dashboard/preview')
-rw-r--r--apps/web/components/dashboard/preview/BookmarkPreview.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/web/components/dashboard/preview/BookmarkPreview.tsx b/apps/web/components/dashboard/preview/BookmarkPreview.tsx
index 3d98dd19..be11b47b 100644
--- a/apps/web/components/dashboard/preview/BookmarkPreview.tsx
+++ b/apps/web/components/dashboard/preview/BookmarkPreview.tsx
@@ -133,12 +133,12 @@ export default function BookmarkPreview({
</div>
<CreationTime createdAt={bookmark.createdAt} />
- <div className="flex gap-4">
+ <div className="flex items-center gap-4">
<p className="text-sm text-gray-400">Tags</p>
<TagsEditor bookmark={bookmark} />
</div>
<div className="flex gap-4">
- <p className="text-sm text-gray-400">Note</p>
+ <p className="pt-2 text-sm text-gray-400">Note</p>
<NoteEditor bookmark={bookmark} />
</div>
<ActionBar bookmark={bookmark} />