diff --git a/src/components/BookmarkItem.tsx b/src/components/BookmarkItem.tsx index fbeb8e3d..0ab34362 100644 --- a/src/components/BookmarkItem.tsx +++ b/src/components/BookmarkItem.tsx @@ -1,6 +1,6 @@ import React from 'react' import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { faLock, faGlobe, faCopy } from '@fortawesome/free-solid-svg-icons' +import { faLock, faBookmark, faUserLock, faCopy } from '@fortawesome/free-solid-svg-icons' import { IndividualBookmark } from '../types/bookmarks' import { formatDate, renderParsedContent } from '../utils/bookmarkUtils' import { extractUrlsFromContent } from '../services/bookmarkHelpers' @@ -28,7 +28,14 @@ export const BookmarkItem: React.FC = ({ bookmark, index }) =
- + {bookmark.isPrivate ? ( + <> + + + + ) : ( + + )} {short(bookmark.id)} diff --git a/src/index.css b/src/index.css index 84323f93..454d5e39 100644 --- a/src/index.css +++ b/src/index.css @@ -358,6 +358,9 @@ body { font-size: 0.8rem; font-weight: 500; text-transform: uppercase; + display: flex; + align-items: center; + gap: 0.25rem; } .bookmark-id {