Skip to content

Commit

Permalink
Merge branch 'CaliCastle:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
MarlinDiary authored Jul 21, 2023
2 parents 369ef92 + a37e35a commit ba55780
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,4 @@ next-env.d.ts
static/

.react-email/
/.idea
10 changes: 6 additions & 4 deletions app/(main)/blog/BlogPostCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,12 @@ export function BlogPostCard({ post, views }: { post: Post; views: number }) {
</span>
</span>

<span className="inline-flex items-center space-x-1 text-[12px] font-medium text-[--post-image-fg] md:text-sm">
<ScriptIcon />
<span>{categories.join(', ')}</span>
</span>
{Array.isArray(categories) && (
<span className="inline-flex items-center space-x-1 text-[12px] font-medium text-[--post-image-fg] md:text-sm">
<ScriptIcon />
<span>{categories.join(', ')}</span>
</span>
)}
</span>
<span className="inline-flex items-center space-x-3 text-[12px] font-medium text-[--post-image-fg] md:text-xs">
<span className="inline-flex items-center space-x-1">
Expand Down
5 changes: 5 additions & 0 deletions app/clerk.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@

.cl-modalBackdrop {
@apply backdrop-blur-sm backdrop-saturate-150;
@apply bg-zinc-100/40;
}

.dark .cl-modalBackdrop {
@apply bg-zinc-900/40;
}

.cl-userButtonPopoverCard {
Expand Down

0 comments on commit ba55780

Please sign in to comment.