diff options
| author | kamtschatka <simon.schatka@gmx.at> | 2024-09-22 17:15:56 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-22 16:15:56 +0100 |
| commit | d0e7ca25d7bed5fe30b425eb4fca4311375191b2 (patch) | |
| tree | cbc0e524843a56c54de04527af8469db31820983 | |
| parent | a770e55520245b7afc2b7a30aa6127eebcb6ea0d (diff) | |
| download | karakeep-d0e7ca25d7bed5fe30b425eb4fca4311375191b2.tar.zst | |
fix(web): Show a scrollbar in the tag editor. Fixes #368 (#404)
readded the scrollbar again, so it is obvious that the list is scrollable
| -rw-r--r-- | apps/web/components/dashboard/bookmarks/TagsEditor.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/web/components/dashboard/bookmarks/TagsEditor.tsx b/apps/web/components/dashboard/bookmarks/TagsEditor.tsx index 4468b28a..8db93227 100644 --- a/apps/web/components/dashboard/bookmarks/TagsEditor.tsx +++ b/apps/web/components/dashboard/bookmarks/TagsEditor.tsx @@ -125,7 +125,7 @@ export function TagsEditor({ padding: "0.5rem", maxHeight: "14rem", overflowY: "auto", - scrollbarWidth: "none", + scrollbarWidth: "thin", }), container: (styles) => ({ ...styles, |
