diff options
| author | MohamedBassem <me@mbassem.com> | 2024-03-23 15:29:04 +0000 |
|---|---|---|
| committer | MohamedBassem <me@mbassem.com> | 2024-03-23 16:43:35 +0000 |
| commit | f8bc4dd9c1a70692e555f2170cd41acbf0f41851 (patch) | |
| tree | c962a755d67d6d22fff5ad41dfbafe306fd0a286 /apps/web/components/dashboard/bookmarks/BookmarkPreview.tsx | |
| parent | 47bd449fbe50a7b423db860ee6a34a7a3f7c3bb4 (diff) | |
| download | karakeep-f8bc4dd9c1a70692e555f2170cd41acbf0f41851.tar.zst | |
chore: Refactor tailwind in all apps to use the tooling package
Diffstat (limited to 'apps/web/components/dashboard/bookmarks/BookmarkPreview.tsx')
| -rw-r--r-- | apps/web/components/dashboard/bookmarks/BookmarkPreview.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/web/components/dashboard/bookmarks/BookmarkPreview.tsx b/apps/web/components/dashboard/bookmarks/BookmarkPreview.tsx index 96e1c19b..74c49ddd 100644 --- a/apps/web/components/dashboard/bookmarks/BookmarkPreview.tsx +++ b/apps/web/components/dashboard/bookmarks/BookmarkPreview.tsx @@ -104,7 +104,7 @@ function TextContentSection({ bookmark }: { bookmark: ZBookmark }) { dangerouslySetInnerHTML={{ __html: bookmark.content.htmlContent || "", }} - className="prose dark:prose-invert mx-auto" + className="prose mx-auto dark:prose-invert" /> ); } @@ -112,7 +112,7 @@ function TextContentSection({ bookmark }: { bookmark: ZBookmark }) { } case "text": { content = ( - <Markdown className="prose dark:prose-invert mx-auto"> + <Markdown className="prose mx-auto dark:prose-invert"> {bookmark.content.text} </Markdown> ); |
